From a73420673b8c449151c85521f77bce8d50c7752d Mon Sep 17 00:00:00 2001 From: Kluys Date: Sat, 16 Jan 2016 22:28:22 +0100 Subject: [PATCH] Fixes the nanofibre suit. The nanofibre suit stops cycling through its modes once it reaches the final mode. Fixed. --- code/modules/customitems/item_defines.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 1fc98d4bc60..6304c606300 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -157,10 +157,10 @@ if("Kluysfluff1") src.icon_state = "Kluysfluff2" usr << "The fibre unfolds into a jacket." - else if("Kluysfluff2") + if("Kluysfluff2") src.icon_state = "Kluysfluff3" usr << "The fibre unfolds into a coat." - else if("Kluysfluff3") + if("Kluysfluff3") src.icon_state = "Kluysfluff1" usr << "The fibre gets sucked back into its holder." else