From 5c093174792e72fd3907e0abaf9f03b3f2231536 Mon Sep 17 00:00:00 2001 From: InsightfulParasite <109536843+InsightfulParasite@users.noreply.github.com> Date: Wed, 1 May 2024 22:41:15 -0400 Subject: [PATCH] Jar Icon fix (#2108) The jar wasnt showing that it was filled with anything for some reason so this should fix it. and by should i mean i did test this. --- code/modules/reagents/reagent_containers/glass.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index f1cb030b4344..686a77a69966 100755 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -150,9 +150,10 @@ desc = "A jar for goops and powders. It can hold up to 40 units." icon = 'icons/obj/chemical.dmi' icon_state = "jar" + fill_icon_state = "jar" volume = 50 spillable = FALSE - fill_icon_thresholds = list(0, 10, 25, 40) + fill_icon_thresholds = list(0, 10, 30, 50) /obj/item/reagent_containers/glass/beaker/jar/pudding name = "jar of pudding"