From a3004d3ceb6f57c3f04d87dfdca328b8ce5a7dea Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Thu, 24 Aug 2017 07:43:46 -0400 Subject: [PATCH] Stops flamethrower crazed gorillas and gives them identifying numbers (#30105) --- .../mob/living/simple_animal/hostile/gorilla/gorilla.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/gorilla/gorilla.dm b/code/modules/mob/living/simple_animal/hostile/gorilla/gorilla.dm index ef3299fedea..2dfd879560e 100644 --- a/code/modules/mob/living/simple_animal/hostile/gorilla/gorilla.dm +++ b/code/modules/mob/living/simple_animal/hostile/gorilla/gorilla.dm @@ -32,6 +32,7 @@ stat_attack = UNCONSCIOUS minbodytemp = 270 maxbodytemp = 350 + unique_name = TRUE var/list/gorilla_overlays[GORILLA_TOTAL_LAYERS] // Gorillas like to dismember limbs from unconcious mobs. @@ -75,3 +76,6 @@ playsound(src, "sound/creatures/gorilla.ogg", 200) ..() +/mob/living/simple_animal/hostile/gorilla/can_use_guns(obj/item/G) + to_chat(src, "Your meaty finger is much too large for the trigger guard!") + return FALSE