Fix ninja spawning with jetpack internals (#35067)

Remove redundant StartingGearEquippedEvent
This commit is contained in:
psykana
2025-08-18 01:25:26 +01:00
committed by GitHub
parent d9f125787e
commit c59f7a5363

View File

@@ -150,7 +150,7 @@ public sealed class LoadoutSystem : EntitySystem
{
// First, randomly pick a startingGear profile from those specified, and equip it.
if (startingGear != null && startingGear.Count > 0)
_station.EquipStartingGear(uid, _random.Pick(startingGear));
_station.EquipStartingGear(uid, _random.Pick(startingGear), false);
if (loadoutGroups == null)
{