Skip to content

Commit

Permalink
Not-so-hot fix for agrolyte perk (#8407)
Browse files Browse the repository at this point in the history
Added a check for virtual scanners to ignore cells. Universal sollution!
  • Loading branch information
AltHit authored Jan 26, 2024
1 parent 97f70bf commit a7a010c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/game/objects/items/devices/scanners/scanners.dm
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@
return
if (!user.IsAdvancedToolUser())
return
if(!cell_use_check(charge_per_use, user))
return
if(!is_virtual)
if(!cell_use_check(charge_per_use, user))
return
return TRUE

/obj/item/device/scanner/proc/is_valid_scan_target(atom/O)
Expand Down

0 comments on commit a7a010c

Please sign in to comment.