From 3fda3fa704c9044c69df0c94826f5d51db2e5d50 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 10 Jan 2021 08:22:28 +0100 Subject: [PATCH] [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> --- 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"