You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Current Rimworld Release MinifyEverything Appears to be incompatible with buildings that use fixedStorageSettings.
From my Research this appears to be caused by the game running fixedStorageSettings.filter.ResolveReferences(); before MinifyEverything adds the it's minified Defs.
The Vanilla Function Verse.ThingDef:ResolveReferences() calls building.ResolveReferencesSpecial(); if the ThingDef has BuildingProperties (building tag)
Within RimWorld.BuildingProperties:ResolveReferencesSpecial()fixedStorageSettings.filter.ResolveReferences(); gets called if fixedStorageSettings is not null
In the Current Rimworld Release MinifyEverything Appears to be incompatible with buildings that use
fixedStorageSettings
.From my Research this appears to be caused by the game running
fixedStorageSettings.filter.ResolveReferences();
before MinifyEverything adds the it's minified Defs.The Vanilla Function
Verse.ThingDef:ResolveReferences()
callsbuilding.ResolveReferencesSpecial();
if theThingDef
hasBuildingProperties
(building
tag)Within
RimWorld.BuildingProperties:ResolveReferencesSpecial()
fixedStorageSettings.filter.ResolveReferences();
gets called iffixedStorageSettings
is notnull
relates to zymex22/Project-RimFactory-Revived#730
The text was updated successfully, but these errors were encountered: