From 6df11c32df352b03a897c1b3bee8ba9aeab8b9a7 Mon Sep 17 00:00:00 2001 From: warriorstar-orion <59303604+warriorstar-orion@users.noreply.github.com> Date: Sun, 19 Dec 2021 13:05:39 -0500 Subject: [PATCH] Fix full ashtray icon/descriptions. (#17255) --- code/game/objects/items/ashtray.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/ashtray.dm b/code/game/objects/items/ashtray.dm index 5cf65188901..581b7e934d3 100644 --- a/code/game/objects/items/ashtray.dm +++ b/code/game/objects/items/ashtray.dm @@ -38,7 +38,7 @@ if(contents.len == max_butts) icon_state = icon_full desc = initial(desc) + " It's stuffed full." - if(contents.len > max_butts * 0.5) + else if(contents.len > max_butts * 0.5) icon_state = icon_half desc = initial(desc) + " It's half-filled." else