fix burglar finnese runtiming on range check (#31669)

This commit is contained in:
Toastical
2026-02-17 18:32:52 +00:00
committed by GitHub
parent 523c09bab9
commit d3c43c83df
@@ -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)