Add map names to stuff (#21760)

- Station map
- FTL map
This commit is contained in:
metalgearsloth
2023-11-22 15:35:37 +11:00
committed by GitHub
parent 1ef0ed132b
commit ee3e3583bd
4 changed files with 9 additions and 8 deletions

View File

@@ -33,6 +33,7 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem
[Dependency] private readonly EntityLookupSystem _lookup = default!;
[Dependency] private readonly FixtureSystem _fixtures = default!;
[Dependency] private readonly MapLoaderSystem _loader = default!;
[Dependency] private readonly MetaDataSystem _metadata = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly SharedPhysicsSystem _physics = default!;
[Dependency] private readonly SharedTransformSystem _transform = default!;
@@ -43,14 +44,11 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem
[Dependency] private readonly ThrusterSystem _thruster = default!;
[Dependency] private readonly UserInterfaceSystem _uiSystem = default!;
private ISawmill _sawmill = default!;
public const float TileMassMultiplier = 0.5f;
public override void Initialize()
{
base.Initialize();
_sawmill = Logger.GetSawmill("shuttles");
InitializeFTL();
InitializeGridFills();