mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 03:31:08 +00:00
Rename BotGroupSay to RaidGroupSay
This commit is contained in:
+3
-3
@@ -615,9 +615,9 @@ void Perl_Bot_DeleteBot(Bot* self) // @categories Script Utility
|
||||
self->DeleteBot();
|
||||
}
|
||||
|
||||
void Perl_Bot_BotGroupSay(Bot* self, const char* message) // @categories Script Utility
|
||||
void Perl_Bot_RaidGroupSay(Bot* self, const char* message) // @categories Script Utility
|
||||
{
|
||||
self->BotGroupSay(self, message);
|
||||
self->RaidGroupSay(self, message);
|
||||
}
|
||||
|
||||
void perl_register_bot()
|
||||
@@ -649,7 +649,7 @@ void perl_register_bot()
|
||||
package.add("ApplySpellRaid", (void(*)(Bot*, int, int, int))&Perl_Bot_ApplySpellRaid);
|
||||
package.add("ApplySpellRaid", (void(*)(Bot*, int, int, int, bool))&Perl_Bot_ApplySpellRaid);
|
||||
package.add("ApplySpellRaid", (void(*)(Bot*, int, int, int, bool, bool))&Perl_Bot_ApplySpellRaid);
|
||||
package.add("BotGroupSay", &Perl_Bot_BotGroupSay);
|
||||
package.add("RaidGroupSay", &Perl_Bot_RaidGroupSay);
|
||||
package.add("Camp", (void(*)(Bot*))&Perl_Bot_Camp);
|
||||
package.add("Camp", (void(*)(Bot*, bool))&Perl_Bot_Camp);
|
||||
package.add("ClearDisciplineReuseTimer", (void(*)(Bot*))&Perl_Bot_ClearDisciplineReuseTimer);
|
||||
|
||||
Reference in New Issue
Block a user