Fix not being able to uncuff people.

This commit is contained in:
Víctor Aguilera Puerto
2020-10-11 12:00:44 +02:00
parent d4b1fa6fe5
commit 30956a0fc8

View File

@@ -230,7 +230,7 @@ namespace Content.Server.GameObjects.Components.ActionBlocking
return;
}
if (!isOwner && user.InRangeUnobstructed(Owner, _interactRange))
if (!isOwner && !user.InRangeUnobstructed(Owner, _interactRange))
{
user.PopupMessage(Loc.GetString("You are too far away to remove the cuffs."));
return;