From f25787740af5cbbcf89a97934c6592a5ca2cebfe Mon Sep 17 00:00:00 2001 From: ike709 Date: Mon, 14 Mar 2022 13:47:49 -0500 Subject: [PATCH] Fixes bedsheet bin update_icon() not working (#17486) --- code/game/objects/structures/bedsheet_bin.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm index ce9081d383f..bef955423e5 100644 --- a/code/game/objects/structures/bedsheet_bin.dm +++ b/code/game/objects/structures/bedsheet_bin.dm @@ -263,7 +263,7 @@ LINEN BINS switch(amount) if(0) icon_state = "linenbin-empty" - if(1 to amount / 2) + if(1 to 10) icon_state = "linenbin-half" else icon_state = "linenbin-full"