mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 11:07:12 +01:00
fix burglar finnese runtiming on range check (#31669)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user