mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 07:38:05 +01:00
Bvak injectors look right (#56045)
Changes the check to >= 20 (the max volume) instead of > 30 which would never be the case
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