From 0eda412077a234f26bd91c76aee290ab6df4154b Mon Sep 17 00:00:00 2001 From: skull132 Date: Sun, 4 May 2014 22:02:48 +0300 Subject: [PATCH] Banner Fix The verb actually works now! --- code/modules/aurora/banner.dm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/code/modules/aurora/banner.dm b/code/modules/aurora/banner.dm index 10d43728..1d4c47ec 100644 --- a/code/modules/aurora/banner.dm +++ b/code/modules/aurora/banner.dm @@ -3,6 +3,7 @@ /obj/structure/banner name = "Corporate Banner" desc = "A blue flag emblazoned with a golden logo of Nanotrasen hanging from a wooden stand." + anchored = 1 density = 1 layer = 9 icon = 'icons/obj/banner.dmi' @@ -14,18 +15,17 @@ set name = "Toggle Banner" if(!usr.canmove || usr.stat || usr.restrained()) - return - - else - usr << "This mob type can't use this verb." + return 0 switch(icon_state) if("banner_down") - if("banner_down") - src.icon_state = "banner_up" - usr << "You scroll the cloth up." - if("banner_up") - src.icon_state = "banner_down" - usr << "You let the cloth hang loose." + src.icon_state = "banner_up" + usr << "You scroll the cloth up." + if("banner_up") + src.icon_state = "banner_down" + usr << "You let the cloth hang loose." + else + usr << "You feel slightly dumber." + return src.update_icon() \ No newline at end of file