[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:
SkyratBot
2021-01-10 08:22:28 +01:00
committed by GitHub
co-authored by spessbro
parent 11acb0c634
commit 3fda3fa704
@@ -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"