From e142728474efe66f0ad5dbe71ceee30774c0743e Mon Sep 17 00:00:00 2001 From: RusskiSam Date: Mon, 22 Feb 2016 00:32:53 +0300 Subject: [PATCH] Removes unnecessary code for mouse rest... ...Or how rookies don't know simple things. --- code/modules/mob/living/simple_animal/friendly/mouse.dm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/code/modules/mob/living/simple_animal/friendly/mouse.dm b/code/modules/mob/living/simple_animal/friendly/mouse.dm index 25cb03331d..fa2d85d5bb 100644 --- a/code/modules/mob/living/simple_animal/friendly/mouse.dm +++ b/code/modules/mob/living/simple_animal/friendly/mouse.dm @@ -55,12 +55,8 @@ audible_emote("snuffles.") /mob/living/simple_animal/mouse/lay_down() //Simply turns sprite into sleeping and back upon using "Rest". - set name = "Rest" - set category = "IC" - - resting = !resting + ..() icon_state = resting ? "mouse_[body_color]_sleep" : "mouse_[body_color]" - src << "You are now [resting ? "resting" : "getting up"]" /mob/living/simple_animal/mouse/New() ..()