Fix GUI prompt

This commit is contained in:
Vortrex
2022-04-28 16:27:43 -05:00
parent f93620cee0
commit bbd63b8230
2 changed files with 2 additions and 4 deletions

View File

@@ -381,7 +381,7 @@ function showPlayerCharacterSelectFailedGUI(client) {
// ===========================================================================
function showPlayerPrompt(client, promptMessage, promptTitle, yesButtonText, noButtonText) {
function showPlayerPromptGUI(client, promptMessage, promptTitle, yesButtonText, noButtonText) {
logToConsole(LOG_DEBUG, `[VRR.Client] Sending show prompt GUI signal to ${getPlayerDisplayForConsole(client)} (Title: ${promptTitle}, Message: ${promptMessage})`);
sendNetworkEventToPlayer("vrr.showPrompt", client, promptMessage, promptTitle, yesButtonText, noButtonText);
}

View File

@@ -158,5 +158,3 @@ function showPlayerChangePasswordGUI(client) {
function showPlayerTwoFactorAuthenticationGUI(client) {
sendNetworkEventToPlayer("vrr.2fa", client);
}
// ===========================================================================