diff --git a/code/modules/mob/living/simple_animal/hostile/killertomato.dm b/code/modules/mob/living/simple_animal/hostile/killertomato.dm index 6b918e00ba5..51fa507f595 100644 --- a/code/modules/mob/living/simple_animal/hostile/killertomato.dm +++ b/code/modules/mob/living/simple_animal/hostile/killertomato.dm @@ -13,8 +13,8 @@ response_help = "prods" response_disarm = "pushes aside" response_harm = "smacks" - melee_damage_lower = 10 - melee_damage_upper = 15 + melee_damage_lower = 8 + melee_damage_upper = 12 attacktext = "slams" ventcrawler = 2 faction = "plants" diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index 321e22389c7..42c39113fea 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -497,6 +497,8 @@ return 1 if(ispath(MP, /mob/living/simple_animal/shade)) return 1 + if(ispath(MP, /mob/living/simple_animal/hostile/killertomato)) + return 1 if(ispath(MP, /mob/living/simple_animal/mouse)) return 1 //It is impossible to pull up the player panel for mice (Fixed! - Nodrak) if(ispath(MP, /mob/living/simple_animal/hostile/bear))