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

@@ -36,7 +36,7 @@ public sealed partial class TriggerSystem
// Re-check for contacts as we cleared them.
else if (TryComp<PhysicsComponent>(uid, out var body))
{
_broadphase.RegenerateContacts(uid, body);
_broadphase.RegenerateContacts((uid, body));
}
}