From 84d9798802df43c59366f96d46643fe08c978f85 Mon Sep 17 00:00:00 2001 From: Rykka Date: Sat, 25 Jul 2020 23:09:09 -0400 Subject: [PATCH] Medibot Interaction Hotfix Always check that you're passing the arguments a proc needs. In this case, I was calling interact(), but not giving it a mob to interact with. Whoops. --- code/modules/mob/living/bot/medbot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/bot/medbot.dm b/code/modules/mob/living/bot/medbot.dm index d0c63faa56e..baa4f84fff0 100644 --- a/code/modules/mob/living/bot/medbot.dm +++ b/code/modules/mob/living/bot/medbot.dm @@ -209,7 +209,7 @@ if(do_after(H, 3 SECONDS, target=src)) set_right(H) else - interact() + interact(H) /mob/living/bot/medbot/proc/interact(mob/user) var/dat