Predict subdermal implants (#37538)
This commit is contained in:
parent
ac7da12f70
commit
c70e06b2d7
1 changed files with 2 additions and 2 deletions
|
|
@ -38,7 +38,7 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem
|
|||
|
||||
private void OnInsert(EntityUid uid, SubdermalImplantComponent component, EntGotInsertedIntoContainerMessage args)
|
||||
{
|
||||
if (component.ImplantedEntity == null || _net.IsClient)
|
||||
if (component.ImplantedEntity == null)
|
||||
return;
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(component.ImplantAction))
|
||||
|
|
@ -54,7 +54,7 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem
|
|||
if (_tag.HasTag(implant, MicroBombTag))
|
||||
{
|
||||
_container.Remove(implant, implantContainer);
|
||||
QueueDel(implant);
|
||||
PredictedQueueDel(implant);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue