mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Fix quantum shiplog mapmode
This commit is contained in:
parent
0a548d5f12
commit
50f898e0c7
@ -21,7 +21,7 @@ namespace NewHorizons.Builder.ShipLog
|
||||
{
|
||||
Material greyScaleMaterial = GameObject.Find(ShipLogHandler.PAN_ROOT_PATH + "/TimberHearth/Sprite").GetComponent<Image>().material;
|
||||
List<NewHorizonsBody> bodies = Main.BodyDict[systemName].Where(
|
||||
b => (b.Config.ShipLog?.mapMode?.remove ?? false) == false
|
||||
b => !(b.Config.ShipLog?.mapMode?.remove ?? false) && !b.Config.IsQuantumState
|
||||
).ToList();
|
||||
bool flagManualPositionUsed = systemName == "SolarSystem";
|
||||
bool flagAutoPositionUsed = false;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user