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:
spessbro
2021-01-10 00:04:09 -03:00
committed by GitHub
parent 37bea0a310
commit 426ea1dae0
@@ -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"