Rename BotGroupSay to RaidGroupSay

This commit is contained in:
nytmyr
2025-01-30 23:03:57 -06:00
parent e695f1c499
commit c08893ffcb
17 changed files with 52 additions and 52 deletions
+3 -3
View File
@@ -659,9 +659,9 @@ void Lua_Bot::DeleteBot() {
self->DeleteBot();
}
void Lua_Bot::BotGroupSay(const char* message) {
void Lua_Bot::RaidGroupSay(const char* message) {
Lua_Safe_Call_Void();
self->BotGroupSay(self, message);
self->RaidGroupSay(self, message);
}
luabind::scope lua_register_bot() {
@@ -693,7 +693,7 @@ luabind::scope lua_register_bot() {
.def("ApplySpellRaid", (void(Lua_Bot::*)(int,int,int,bool))&Lua_Bot::ApplySpellRaid)
.def("ApplySpellRaid", (void(Lua_Bot::*)(int,int,int,bool,bool))&Lua_Bot::ApplySpellRaid)
.def("ApplySpellRaid", (void(Lua_Bot::*)(int,int,int,bool,bool))&Lua_Bot::ApplySpellRaid)
.def("BotGroupSay", (void(Lua_Bot::*)(const char*)) & Lua_Bot::BotGroupSay)
.def("RaidGroupSay", (void(Lua_Bot::*)(const char*))&Lua_Bot::RaidGroupSay)
.def("Camp", (void(Lua_Bot::*)(void))&Lua_Bot::Camp)
.def("Camp", (void(Lua_Bot::*)(bool))&Lua_Bot::Camp)
.def("ClearDisciplineReuseTimer", (void(Lua_Bot::*)())&Lua_Bot::ClearDisciplineReuseTimer)