Replace ProtoId<EntityPrototype> uses with EntProtoId (#29892)

This commit is contained in:
Tayrtahn
2024-07-10 20:01:30 -04:00
committed by GitHub
parent b014d4d0e0
commit 2df65f10f5
4 changed files with 5 additions and 5 deletions

View File

@@ -34,8 +34,8 @@ public sealed partial class SleepingSystem : EntitySystem
[Dependency] private readonly SharedEmitSoundSystem _emitSound = default!;
[Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!;
public static readonly ProtoId<EntityPrototype> SleepActionId = "ActionSleep";
public static readonly ProtoId<EntityPrototype> WakeActionId = "ActionWake";
public static readonly EntProtoId SleepActionId = "ActionSleep";
public static readonly EntProtoId WakeActionId = "ActionWake";
public override void Initialize()
{