Skip to content

Commit

Permalink
It's 505 now c'mon
Browse files Browse the repository at this point in the history
  • Loading branch information
Skies-Of-Blue committed Mar 10, 2024
1 parent 23c1136 commit 6c61361
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/objects/items/devices/scanners.dm
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ GENE SCANNER

// Used by the PDA medical scanner too
/proc/healthscan(mob/user, mob/living/M, mode = SCANNER_VERBOSE, advanced = FALSE)
if(isliving(user) && (user.incapacitated() || user.is_blind()))
if(isliving(user) && (user.incapacitated()))
return

// the final list of strings to render
Expand Down Expand Up @@ -456,7 +456,7 @@ GENE SCANNER
/obj/item/analyzer/attack_self(mob/user)
add_fingerprint(user)

if (user.stat || user.is_blind())
if (user.stat)
return

var/turf/location = user.loc
Expand Down Expand Up @@ -636,7 +636,7 @@ GENE SCANNER
custom_materials = list(/datum/material/iron=30, /datum/material/glass=20)

/obj/item/slime_scanner/attack(mob/living/M, mob/living/user)
if(user.stat || user.is_blind())
if(user.stat)
return
if (!isslime(M))
to_chat(user, "<span class='warning'>This device can only scan slimes!</span>")
Expand Down

0 comments on commit 6c61361

Please sign in to comment.