Meteor Fix (#5717)

This commit is contained in:
Leon Friedrich
2021-12-10 04:34:38 +13:00
committed by GitHub
parent cd1b5f44e8
commit 896f80831b
2 changed files with 7 additions and 7 deletions

View File

@@ -124,9 +124,9 @@ namespace Content.Server.Administration
verb.Category = VerbCategory.Debug;
verb.Act = () =>
{
var coords = EntityManager.GetComponent<TransformComponent>(args.Target).Coordinates;
Timer.Spawn(_gameTiming.TickPeriod, () => _explosions.SpawnExplosion(coords, 0, 1, 2, 1, args.Target), CancellationToken.None);
if (EntityManager.TryGetComponent(args.Target, out SharedBodyComponent? body))
var coords = Transform(args.Target).Coordinates;
Timer.Spawn(_gameTiming.TickPeriod, () => _explosions.SpawnExplosion(coords, 0, 1, 2, 1), CancellationToken.None);
if (TryComp(args.Target, out SharedBodyComponent? body))
{
body.Gib();
}