From 3e96bdc5e80b6d5077784dc4746d3c89dfeeb0a1 Mon Sep 17 00:00:00 2001 From: "Kortgstation@gmail.com" Date: Tue, 11 Sep 2012 03:43:30 +0000 Subject: [PATCH] Hulks can't use guns. Hopefully this encourages them to actually go around punching things instead of having their magic stun immunity shield while playing normally. Alien queen regen is now 5 instead of 15. Will this fix aliens? No. But it will make it so they're not immortal in the mean time. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4676 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/living/carbon/alien/humanoid/queen.dm | 2 +- code/modules/projectiles/gun.dm | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/alien/humanoid/queen.dm b/code/modules/mob/living/carbon/alien/humanoid/queen.dm index e0c98c085d3..36ab135e81e 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/queen.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/queen.dm @@ -6,7 +6,7 @@ health = 250 icon_state = "alienq_s" nopush = 1 - heal_rate = 15 + heal_rate = 5 plasma_rate = 20 diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 4ba348d02a9..b95a3a52629 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -62,6 +62,11 @@ if (!user.IsAdvancedToolUser()) user << "\red You don't have the dexterity to do this!" return + if(istype(user, /mob/living)) + var/mob/living/M = user + if (HULK in M.mutations) + M << "\red Your meaty finger is much too large for the trigger guard!" + return add_fingerprint(user)