From b307d9a90ea3a7ff19609740a195f236b5923a7a Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Wed, 8 Feb 2017 16:37:50 -0500 Subject: [PATCH] Runtime eats mice Fixes #417 --- code/modules/mob/living/simple_animal/friendly/cat.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/friendly/cat.dm b/code/modules/mob/living/simple_animal/friendly/cat.dm index 868bafd7cc..5c6561569b 100644 --- a/code/modules/mob/living/simple_animal/friendly/cat.dm +++ b/code/modules/mob/living/simple_animal/friendly/cat.dm @@ -32,8 +32,12 @@ if(!stat && !resting && !buckled) for(var/mob/living/simple_animal/mouse/M in loc) if(!M.stat) - M.splat() - visible_emote(pick("bites \the [M]!","toys with \the [M].","chomps on \the [M]!")) + //VOREStation Edit - For cats to eat mice. + animal_nom(M) + sleep(swallowTime) + //M.splat() + //visible_emote(pick("bites \the [M]!","toys with \the [M].","chomps on \the [M]!")) + //VOREStation Edit End. movement_target = null stop_automated_movement = 0 break