From cde46675f3aa724892edaaac08d8aacc2086d295 Mon Sep 17 00:00:00 2001 From: Dip Date: Mon, 9 Nov 2020 16:15:14 -0300 Subject: [PATCH] Fix examine --- .../code/modules/reagents/reagent container/hypospraymkii.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modular_citadel/code/modules/reagents/reagent container/hypospraymkii.dm b/modular_citadel/code/modules/reagents/reagent container/hypospraymkii.dm index de334f31..012b0812 100644 --- a/modular_citadel/code/modules/reagents/reagent container/hypospraymkii.dm +++ b/modular_citadel/code/modules/reagents/reagent container/hypospraymkii.dm @@ -107,7 +107,10 @@ /obj/item/hypospray/mkii/examine(mob/user) . = ..() - to_chat(user, "[src] is set to [mode ? "Inject" : "Spray"] contents on application.") + if(vial) + . += "[vial] has [vial.reagents.total_volume]u remaining." + else + . += "It has no vial loaded in." /obj/item/hypospray/mkii/proc/unload_hypo(obj/item/I, mob/user) if (reloadable == TRUE)