remove usages of obsolete EntityUid method variants (#35106)

eughhhhh
This commit is contained in:
Milon
2025-02-16 03:06:23 +01:00
committed by GitHub
parent 831dbef591
commit e97d6870cc
6 changed files with 7 additions and 7 deletions

View File

@@ -116,7 +116,7 @@ public abstract class SharedStunSystem : EntitySystem
private void OnStunOnContactStartup(Entity<StunOnContactComponent> ent, ref ComponentStartup args)
{
if (TryComp<PhysicsComponent>(ent, out var body))
_broadphase.RegenerateContacts(ent, body);
_broadphase.RegenerateContacts((ent, body));
}
private void OnStunOnContactCollide(Entity<StunOnContactComponent> ent, ref StartCollideEvent args)