fix: oops, forgot the not

Signed-off-by: DisposableCrewmember42 <disposablecrewmember42@proton.me>
This commit is contained in:
DisposableCrewmember42 2026-05-30 15:18:27 +00:00 committed by GitHub
parent 77774fc022
commit 74fac23c3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}