Shuttle map IFF tweaks (#25897)
- HideLabel just means it won't have its name / button drawn whereas Hide will block it completely.
This commit is contained in:
@@ -60,7 +60,7 @@ public abstract partial class SharedShuttleSystem
|
||||
return;
|
||||
|
||||
component.Color = color;
|
||||
Dirty(component);
|
||||
Dirty(gridUid, component);
|
||||
UpdateIFFInterfaces(gridUid, component);
|
||||
}
|
||||
|
||||
@@ -73,7 +73,7 @@ public abstract partial class SharedShuttleSystem
|
||||
return;
|
||||
|
||||
component.Flags |= flags;
|
||||
Dirty(component);
|
||||
Dirty(gridUid, component);
|
||||
UpdateIFFInterfaces(gridUid, component);
|
||||
}
|
||||
|
||||
@@ -87,7 +87,7 @@ public abstract partial class SharedShuttleSystem
|
||||
return;
|
||||
|
||||
component.Flags &= ~flags;
|
||||
Dirty(component);
|
||||
Dirty(gridUid, component);
|
||||
UpdateIFFInterfaces(gridUid, component);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user