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)