Skip to content

Commit

Permalink
Guh
Browse files Browse the repository at this point in the history
  • Loading branch information
VMSolidus committed Jan 23, 2024
1 parent 51d3355 commit bc98f0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Content.IntegrationTests/Tests/EntityTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ public async Task SpawnAndDeleteEntityCountTest()
"TimedSpawner",
// makes an announcement on mapInit.
"AnnounceOnSpawn",
"MobHumanFugitive", //DeltaV: MidroundAntagEvent comes with a complimentary floor tile, this sets off the test
};

Assert.That(server.CfgMan.GetCVar(CVars.NetPVS), Is.False);
Expand Down
2 changes: 2 additions & 0 deletions Content.Server/Nyanotrasen/Fugitive/FugitiveSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ private void OnSpawned(EntityUid uid, FugitiveComponent component, GhostRoleSpaw

_stun.TryParalyze(uid, TimeSpan.FromSeconds(2), false);
_audioSystem.PlayPvs(component.SpawnSoundPath, uid, AudioParams.Default.WithVolume(-6f));

var tile = Spawn("FloorTileItemSteel", Transform(uid).Coordinates);
}

private FormattedMessage GenerateFugiReport(EntityUid uid)
Expand Down

0 comments on commit bc98f0f

Please sign in to comment.