From 426ea1dae0e2f78dde1650cba924a57b31de7b3e Mon Sep 17 00:00:00 2001 From: spessbro <51048066+spessbro@users.noreply.github.com> Date: Sat, 9 Jan 2021 22:04:09 -0500 Subject: [PATCH] Bvak injectors look right (#56045) Changes the check to >= 20 (the max volume) instead of > 30 which would never be the case --- code/modules/reagents/reagent_containers/hypospray.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index 9c5c5b0a9cc..79293d48df8 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -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"