From ac75d6bb298aac81301a66a436ec9caaa2442d4f Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Thu, 28 Mar 2024 12:17:30 +0100 Subject: [PATCH] fix missing target in a balloon alert (#8092) --- code/modules/surgery/surgery.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/surgery.dm b/code/modules/surgery/surgery.dm index 1532e207f4..ba88c9e84f 100644 --- a/code/modules/surgery/surgery.dm +++ b/code/modules/surgery/surgery.dm @@ -211,7 +211,7 @@ if(!do_mob(user, M, calc_duration * toolspeed, zone, exclusive = TRUE)) success = FALSE to_chat(user, "You must remain close to and keep focused on your patient to conduct surgery.") - user.balloon_alert("You must remain close to and keep focused on your patent to conduct surgery") // CHOMPEdit + user.balloon_alert(user, "You must remain close to and keep focused on your patent to conduct surgery") // CHOMPEdit if(success) selected_surgery.end_step(user, M, zone, src)