mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-13 11:54:04 +02:00
fix default elements disappearing when loading saves if the identifiers don't match
This commit is contained in:
@@ -76,7 +76,7 @@ int Simulation::Load(int fullX, int fullY, GameSave * save, bool includePressure
|
|||||||
// if this is a custom element, set the ID to the ID we found when comparing identifiers in the palette map
|
// if this is a custom element, set the ID to the ID we found when comparing identifiers in the palette map
|
||||||
// set type to 0 if we couldn't find an element with that identifier present when loading,
|
// set type to 0 if we couldn't find an element with that identifier present when loading,
|
||||||
// unless this is a default element, in which case keep the current ID, because otherwise when an element is renamed it wouldn't show up anymore in older saves
|
// unless this is a default element, in which case keep the current ID, because otherwise when an element is renamed it wouldn't show up anymore in older saves
|
||||||
if (myId != 0 || pi.first.BeginsWith("DEFAULT_PT_"))
|
if (myId != 0 || !pi.first.BeginsWith("DEFAULT_PT_"))
|
||||||
partMap[pi.second] = myId;
|
partMap[pi.second] = myId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user