From 93329b4b068ee0569ef72927214961336349b48b Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 24 May 2021 21:15:37 -0400 Subject: [PATCH] [Shared Bank] Add additional popup to shared bank warning message, as client-side filters can cause the message to be unseen. (#1368) --- zone/client_process.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/zone/client_process.cpp b/zone/client_process.cpp index 9c2175b27..a78095a30 100644 --- a/zone/client_process.cpp +++ b/zone/client_process.cpp @@ -1450,7 +1450,12 @@ void Client::OPMoveCoin(const EQApplicationPacket* app) } else{ if (to_bucket == &m_pp.platinum_shared || from_bucket == &m_pp.platinum_shared){ - this->Message(Chat::Red, "::: WARNING! ::: SHARED BANK IS DISABLED AND YOUR PLATINUM WILL BE DESTROYED IF YOU PUT IT HERE"); + this->SendPopupToClient( + "Shared Bank Warning", + "::: WARNING! :::
" + "SHARED BANK IS DISABLED AND YOUR PLATINUM WILL BE DESTROYED IF YOU PUT IT HERE!
" + ); + this->Message(Chat::Red, "::: WARNING! ::: SHARED BANK IS DISABLED AND YOUR PLATINUM WILL BE DESTROYED IF YOU PUT IT HERE!"); } } }