From 25d9f6b62a5561cc075cef2d5d3e9469f107ba0a Mon Sep 17 00:00:00 2001 From: James Smith Date: Wed, 18 Sep 2024 23:58:41 -0500 Subject: [PATCH] Make `Disable Boss` send `!unboss USERNAME` instead of `!boss`. This patch updates the `Disable Boss` button (in the Lobby player- list's right-click menu) to send `!unboss USERNAME` in chat, instead of `!boss`. --- LuaMenu/widgets/api_user_handler.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LuaMenu/widgets/api_user_handler.lua b/LuaMenu/widgets/api_user_handler.lua index c15528e7a..bb83da2dd 100644 --- a/LuaMenu/widgets/api_user_handler.lua +++ b/LuaMenu/widgets/api_user_handler.lua @@ -1113,7 +1113,7 @@ local function GetUserControls(userName, opts) elseif selectedName == "Make Boss" then lobby:SayBattle("!boss "..userName) elseif selectedName == "Disable Boss" then - lobby:SayBattle("!boss") + lobby:SayBattle("!unboss "..userName) elseif selectedName == "Force Spectator" then lobby:SayBattle("!spec "..userName) elseif selectedName == "Report" and Configuration.gameConfig.link_reportPlayer ~= nil then