diff --git a/code/modules/reagents/Chemistry-Machinery.dm b/code/modules/reagents/Chemistry-Machinery.dm index a66edfd891d..2e3672c2866 100644 --- a/code/modules/reagents/Chemistry-Machinery.dm +++ b/code/modules/reagents/Chemistry-Machinery.dm @@ -138,6 +138,7 @@ var/obj/item/weapon/reagent_containers/glass/B = beaker B.loc = loc beaker = null + overlays -= "disp_beaker" add_fingerprint(usr) return 1 // update UIs attached to this object @@ -158,6 +159,7 @@ B.loc = src user << "You add the beaker to the machine!" nanomanager.update_uis(src) // update all UIs attached to src + overlays += "disp_beaker" /obj/machinery/chem_dispenser/attack_ai(mob/user as mob) return src.attack_hand(user) diff --git a/icons/obj/chemical.dmi b/icons/obj/chemical.dmi index 8c3eee2a656..af5e4e68ac5 100644 Binary files a/icons/obj/chemical.dmi and b/icons/obj/chemical.dmi differ