From 3fac409d52b9dc36f3c063ee2b0c3c6687b86ee4 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sat, 16 Apr 2022 21:44:03 -0500 Subject: [PATCH] Use more locale strings --- scripts/server/account.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server/account.js b/scripts/server/account.js index df1e27e3..9d52dafd 100644 --- a/scripts/server/account.js +++ b/scripts/server/account.js @@ -607,7 +607,7 @@ function loginSuccess(client) { if(getPlayerData(client).subAccounts.length == 0) { if(doesServerHaveGUIEnabled() && doesPlayerHaveGUIEnabled(client)) { - showPlayerPromptGUI(client, getLocaleString(client, "NoCharactersGUIMessage"), getLocaleString(client, "NoCharactersGUIWindowTitle")); + showPlayerPromptGUI(client, getLocaleString(client, "NoCharactersGUIMessage"), getLocaleString(client, "NoCharactersGUIWindowTitle"), getLocaleString(client, "Yes"), getLocaleString(client, "No")); getPlayerData(client).promptType = VRR_PROMPT_CREATEFIRSTCHAR; logToConsole(LOG_DEBUG, `[VRR.Account] ${getPlayerDisplayForConsole(client)} is being shown the no characters prompt GUI`); } else {