From 56800491952aea49f768bfb25a5d585a2ae4bbc0 Mon Sep 17 00:00:00 2001 From: Archie Date: Sat, 16 Jan 2021 00:58:43 -0300 Subject: [PATCH] nerf the rat :tm: --- code/modules/mob/living/simple_animal/friendly/mouse.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/friendly/mouse.dm b/code/modules/mob/living/simple_animal/friendly/mouse.dm index f3ee9d7a..7d289699 100644 --- a/code/modules/mob/living/simple_animal/friendly/mouse.dm +++ b/code/modules/mob/living/simple_animal/friendly/mouse.dm @@ -39,7 +39,7 @@ icon_living = "mouse_[body_color]" icon_dead = "mouse_[body_color]_dead" if(name == "mouse") // Faster than checking for mobtypes, just checks if this mouse is a generic mouse. - if(prob(2)) //2% chance to turn a generic mouse into a boommouse + if(prob(1)) //2% chance to turn a generic mouse into a boommouse new /mob/living/simple_animal/mouse/boommouse(src.loc) qdel(src) @@ -190,6 +190,6 @@ /mob/living/simple_animal/mouse/boommouse/death(gibbed, toast) visible_message("The boommouse violently explodes!") - atmos_spawn_air("plasma=15;TEMP=500") - explosion(src.loc, 0, 1, 2, 0, 1, 0, 2, 0, 0) + atmos_spawn_air("plasma=15;TEMP=750") + explosion(src.loc, 0, 0, 2, 0, 1, 0, 2, 0, 0) qdel(src)