mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 06:27:43 +00:00
Massive fmtlib refactor
This commit is contained in:
@@ -53,19 +53,19 @@ struct WallCrawlerSwarm : IScriptObject {
|
||||
}
|
||||
|
||||
void nameIDs(PAKRouter<PAKBridge>& pakRouter) const {
|
||||
if (part1) {
|
||||
if (part1.isValid()) {
|
||||
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(part1);
|
||||
ent->name = name + "_part1";
|
||||
}
|
||||
if (part2) {
|
||||
if (part2.isValid()) {
|
||||
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(part2);
|
||||
ent->name = name + "_part2";
|
||||
}
|
||||
if (part3) {
|
||||
if (part3.isValid()) {
|
||||
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(part3);
|
||||
ent->name = name + "_part3";
|
||||
}
|
||||
if (part4) {
|
||||
if (part4.isValid()) {
|
||||
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(part4);
|
||||
ent->name = name + "_part4";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user