mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 08:08:49 +01:00
[MIRROR] Bvak injectors look right (#2608)
* Bvak injectors look right (#56045) Changes the check to >= 20 (the max volume) instead of > 30 which would never be the case * Bvak injectors look right Co-authored-by: spessbro <51048066+spessbro@users.noreply.github.com>
This commit is contained in:
@@ -210,7 +210,7 @@
|
||||
list_reagents = list(/datum/reagent/vaccine/fungal_tb = 20)
|
||||
|
||||
/obj/item/reagent_containers/hypospray/medipen/tuberculosiscure/update_icon_state()
|
||||
if(reagents.total_volume > 30)
|
||||
if(reagents.total_volume >= volume)
|
||||
icon_state = initial(icon_state)
|
||||
else if (reagents.total_volume > 0)
|
||||
icon_state = "[initial(icon_state)]1"
|
||||
|
||||
Reference in New Issue
Block a user