From 1568c83837dc40bd67e087880e2f4746a5300506 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 14 Jun 2020 21:58:50 +0100 Subject: [PATCH] Update medbot.dm --- code/modules/mob/living/simple_animal/bot/medbot.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/bot/medbot.dm b/code/modules/mob/living/simple_animal/bot/medbot.dm index 36e369cec2..cbb495bf9c 100644 --- a/code/modules/mob/living/simple_animal/bot/medbot.dm +++ b/code/modules/mob/living/simple_animal/bot/medbot.dm @@ -420,6 +420,7 @@ // if someone tipped us over, check whether we should ask for help or just right ourselves eventually /mob/living/simple_animal/bot/medbot/proc/handle_panic() tipped_status++ + var/list/messagevoice switch(tipped_status) if(MEDBOT_PANIC_LOW) messagevoice = list("I require assistance." = 'sound/voice/medbot/i_require_asst.ogg') @@ -604,9 +605,6 @@ return HAS_TRAIT(M, TRAIT_TOXINLOVER)? treatment_tox_toxlover : treatment_tox /mob/living/simple_animal/bot/medbot/attack_hand(mob/living/carbon/human/H) - if(INTERACTING_WITH(H, src)) - to_chat(H, "You're already interacting with [src].") - return if(H.a_intent == INTENT_DISARM && mode != BOT_TIPPED) H.visible_message("[H] begins tipping over [src].", "You begin tipping over [src]...")