fix: oops, forgot the not
Signed-off-by: DisposableCrewmember42 <disposablecrewmember42@proton.me>
This commit is contained in:
parent
77774fc022
commit
74fac23c3a
|
|
@ -26,7 +26,7 @@ public sealed class FreezeCommand : LocalizedEntityCommands
|
|||
continue;
|
||||
}
|
||||
|
||||
if (session.AttachedEntity is { } uid)
|
||||
if (session.AttachedEntity is not { } uid)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
@ -67,7 +67,7 @@ public sealed class UnfreezeCommand : LocalizedEntityCommands
|
|||
continue;
|
||||
}
|
||||
|
||||
if (session.AttachedEntity is { } uid)
|
||||
if (session.AttachedEntity is not { } uid)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue