diff --git a/code/modules/mod/modules/modules_medical.dm b/code/modules/mod/modules/modules_medical.dm index a0d58d721f3..936c261dd20 100644 --- a/code/modules/mod/modules/modules_medical.dm +++ b/code/modules/mod/modules/modules_medical.dm @@ -119,6 +119,12 @@ volume = 30 inject_flags = INJECT_CHECK_PENETRATE_THICK +/obj/item/reagent_containers/syringe/mod/update_reagent_overlay() + if(reagents?.total_volume) + var/mutable_appearance/filling_overlay = mutable_appearance('icons/obj/medical/reagent_fillings.dmi', "mod[get_rounded_vol()]") + filling_overlay.color = mix_color_from_reagents(reagents.reagent_list) + . += filling_overlay + ///Organizer - Lets you shoot organs, immediately replacing them if the target has the organ manipulation surgery. /obj/item/mod/module/organizer name = "MOD organizer module" diff --git a/icons/obj/medical/reagent_fillings.dmi b/icons/obj/medical/reagent_fillings.dmi index 0d535c6cac2..0da57e714a5 100644 Binary files a/icons/obj/medical/reagent_fillings.dmi and b/icons/obj/medical/reagent_fillings.dmi differ