Fix health analyzer icon (#16151)

* Fix health scanner port

* CL

* Update code/game/objects/items/devices/scanners.dm
This commit is contained in:
Cody Brittain
2023-03-31 13:50:17 -04:00
committed by GitHub
parent c2df34ba35
commit 71a92787ea
3 changed files with 43 additions and 0 deletions
@@ -29,6 +29,7 @@ BREATH ANALYZER
if(last_scan <= world.time - 20) //Spam limiter.
last_scan = world.time
sound_scan = TRUE
flick("[icon_state]-scan", src) //makes it so that it plays the scan animation on a successful scan
health_scan_mob(M, user, mode, sound_scan = sound_scan)
add_fingerprint(user)
@@ -37,6 +38,7 @@ BREATH ANALYZER
if(last_scan <= world.time - 20) //Spam limiter.
last_scan = world.time
sound_scan = TRUE
flick("[icon_state]-scan", src) //makes it so that it plays the scan animation on a successful scan
health_scan_mob(user, user, mode, sound_scan = sound_scan)
add_fingerprint(user)