From 6ceaa3938dc3b002bdbd10567002a3bd1cdfa177 Mon Sep 17 00:00:00 2001 From: ItsSelis Date: Wed, 22 Jun 2022 22:15:17 +0200 Subject: [PATCH] Update alert.dm --- code/modules/tgui_input/alert.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/tgui_input/alert.dm b/code/modules/tgui_input/alert.dm index fa0b4de8527..7a39f2e55ef 100644 --- a/code/modules/tgui_input/alert.dm +++ b/code/modules/tgui_input/alert.dm @@ -26,9 +26,9 @@ else return // A gentle nudge - you should not be using TGUI alert for anything other than a simple message. - if(length(buttons) > 3) - log_tgui(user, "Error: TGUI Alert initiated with too many buttons. Use a list.", "TguiAlert") - return tgui_input_list(user, message, title, buttons, timeout, autofocus) + //if(length(buttons) > 3) + // log_tgui(user, "Error: TGUI Alert initiated with too many buttons. Use a list.", "TguiAlert") + // return tgui_input_list(user, message, title, buttons, timeout, autofocus) // Client does NOT have tgui_input on: Returns regular input if(!usr.client.prefs.tgui_input_mode || strict_byond)