Make gibbing drop items again (#21047)

LGTM, Just a warning that this will probably get overriden when medical refactor gets merged since it refactors gibbing.
This commit is contained in:
Doru991
2023-10-19 00:15:17 +03:00
committed by GitHub
parent 9c25db8b13
commit b419dbb3eb
3 changed files with 20 additions and 6 deletions

View File

@@ -148,7 +148,7 @@ namespace Content.Server.Explosion.EntitySystems
if (!TryComp<TransformComponent>(uid, out var xform))
return;
_body.GibBody(xform.ParentUid, deleteItems: component.DeleteItems);
_body.GibBody(xform.ParentUid, true, deleteItems: component.DeleteItems);
args.Handled = true;
}