From 0d4ae037ab315a08cd9475b2e122963f0836bf3f Mon Sep 17 00:00:00 2001 From: Kyep Date: Fri, 9 Dec 2016 22:43:13 -0800 Subject: [PATCH] More Tiger Requests --- .../hostile/terror_spiders/terror_spiders.dm | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm b/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm index 88826dc86ee..6b78b26eaee 100644 --- a/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm +++ b/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm @@ -124,9 +124,9 @@ var/global/list/ts_spiderlist = list() if(istype(target, /mob/living/simple_animal/hostile/poison/terror_spider)) var/mob/living/simple_animal/hostile/poison/terror_spider/T = target if(T.spider_tier > spider_tier) - visible_message("[src] bows in respect for the terrifying presence of [target]") + visible_message("[src] bows in respect for the terrifying presence of [target].") else if(T.spider_tier == spider_tier) - visible_message("[src] harmlessly nuzzles [target].") + visible_message("[src] nuzzles [target].") else if(T.spider_tier < spider_tier && spider_tier >= 4) visible_message("[src] gives [target] a stern look.") else @@ -183,7 +183,7 @@ var/global/list/ts_spiderlist = list() ..() var/list/msgs = list() if(stat == DEAD) - msgs += "It appears to be dead.\n" + msgs += "It appears to be dead.\n" else if(key) msgs += "Its eyes regard you with a curious intelligence." @@ -205,9 +205,9 @@ var/global/list/ts_spiderlist = list() /mob/living/simple_animal/hostile/poison/terror_spider/New() ..() ts_spiderlist += src - add_language("TerrorSpider") + add_language("Spider Hivemind") add_language("Galactic Common") - default_language = all_languages["TerrorSpider"] + default_language = all_languages["Spider Hivemind"] web_action = new() web_action.Grant(src) @@ -310,19 +310,18 @@ var/global/list/ts_spiderlist = list() if(D.operating) return if(!D.density) - to_chat(src, "Closing doors does not help us.") + to_chat(src, "Closing doors does not help us.") else if(D.welded) - to_chat(src, "The door is welded shut.") + to_chat(src, "The door is welded shut.") else if(D.locked) - to_chat(src, "The door is bolted shut.") - else if( (!istype(D.req_access) || !D.req_access.len) && (!istype(D.req_one_access) || !D.req_one_access.len) && (D.req_access_txt == "0") && (D.req_one_access_txt == "0") ) - //visible_message("\the [src] opens the public-access door [D]!") + to_chat(src, "The door is bolted shut.") + else if(D.allowed(src)) D.open(1) else if(D.arePowerSystemsOn() && (spider_opens_doors != 2)) - to_chat(src, "The door's motors resist your efforts to force it.") + to_chat(src, "The door's motors resist your efforts to force it.") else if(!spider_opens_doors) - to_chat(src, "Your type of spider is not strong enough to force open doors.") + to_chat(src, "Your type of spider is not strong enough to force open doors.") else - visible_message("\the [src] pries open the door!") + visible_message("[src] pries open the door!") playsound(src.loc, "sparks", 100, 1) D.open(1) \ No newline at end of file