atmos: fix AtmosDeviceSystem failing to join (#4746)
This commit is contained in:
parent
28516fd466
commit
03e5c153da
|
|
@ -32,7 +32,7 @@ namespace Content.Server.Atmos.Piping.EntitySystems
|
|||
|
||||
private bool CanJoinAtmosphere(AtmosDeviceComponent component)
|
||||
{
|
||||
return !component.RequireAnchored || !component.Owner.Transform.Anchored;
|
||||
return !component.RequireAnchored || component.Owner.Transform.Anchored;
|
||||
}
|
||||
|
||||
public void JoinAtmosphere(AtmosDeviceComponent component)
|
||||
|
|
|
|||
Loading…
Reference in New Issue