From ddb253e372ac24afda5bc57d087864826903b391 Mon Sep 17 00:00:00 2001 From: tls-kn Date: Fri, 11 Aug 2023 10:24:21 +0000 Subject: [PATCH] changed the action of the Leave Button on Outgoing Notification Panels to use the new /leave command instead of kicking your own character, making it not necessary to change your own character name in the settings, every time you switch characters --- .../notification/controller/NotificationOutgoingController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-ui/src/main/java/com/mercury/platform/ui/components/panel/notification/controller/NotificationOutgoingController.java b/app-ui/src/main/java/com/mercury/platform/ui/components/panel/notification/controller/NotificationOutgoingController.java index 9a75d86b..d96a8f70 100644 --- a/app-ui/src/main/java/com/mercury/platform/ui/components/panel/notification/controller/NotificationOutgoingController.java +++ b/app-ui/src/main/java/com/mercury/platform/ui/components/panel/notification/controller/NotificationOutgoingController.java @@ -25,7 +25,7 @@ public void performWhoIs() { @Override public void performLeave(String nickName) { - MercuryStoreCore.chatCommandSubject.onNext("/kick " + nickName); + MercuryStoreCore.chatCommandSubject.onNext("/leave"); } @Override