From d3c43c83df0b664e2ba97633d0b82e28255e0534 Mon Sep 17 00:00:00 2001 From: Toastical <20125180+Toastical@users.noreply.github.com> Date: Tue, 17 Feb 2026 20:32:52 +0200 Subject: [PATCH] fix burglar finnese runtiming on range check (#31669) --- code/modules/antagonists/heretic/magic/burglar_finesse.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/heretic/magic/burglar_finesse.dm b/code/modules/antagonists/heretic/magic/burglar_finesse.dm index 71d3949cd89..bd20a2bbc37 100644 --- a/code/modules/antagonists/heretic/magic/burglar_finesse.dm +++ b/code/modules/antagonists/heretic/magic/burglar_finesse.dm @@ -21,7 +21,7 @@ /datum/spell/pointed/burglar_finesse/valid_target(target, user) if(!ishuman(target)) return FALSE - if(!get_dist(target, user >= 10)) // no yoinking through cams or scopes. + if(!get_dist(target, user) >= 10) // no yoinking through cams or scopes. return FALSE var/mob/living/carbon/human/human_target = target if(locate(/obj/item/storage/backpack) in human_target.contents)