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

@@ -228,7 +228,7 @@ public sealed class SmokeSystem : EntitySystem
var xform = Transform(uid);
_physics.SetBodyType(uid, BodyType.Dynamic, fixtures, body, xform);
_physics.SetCanCollide(uid, true, manager: fixtures, body: body);
_broadphase.RegenerateContacts(uid, body, fixtures, xform);
_broadphase.RegenerateContacts((uid, body, fixtures, xform));
}
var timer = EnsureComp<TimedDespawnComponent>(uid);