diff options
| author | acidmanifesto <joshua.lee.betts@gmail.com> | 2022-04-16 11:00:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-16 11:00:38 -0400 |
| commit | db360f0cfb5dde143ce0226e41399ea0e19daf43 (patch) | |
| tree | 7574a0810cd53c875d5e7c2c31b6d1cd5bb763ef /src/server/scripts | |
| parent | ca95a986ba0c6cbc250e78b590a169b8ac98747a (diff) | |
Fix (Core\DB) Hostil to Hostile spelling fix (#11399)
* Fix (Core) Hostil to Hostile spelling fix
* sql cmd adjustment as well
* AliGnZ
* Further Hostil to Hostile Correction
Per @Si1ker Research via https://github.com/azerothcore/azerothcore-wotlk/pull/11399#issuecomment-1099506373
Diffstat (limited to 'src/server/scripts')
| -rw-r--r-- | src/server/scripts/Commands/cs_debug.cpp | 6 | ||||
| -rw-r--r-- | src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/server/scripts/Commands/cs_debug.cpp b/src/server/scripts/Commands/cs_debug.cpp index dda74b0c8a..b33d0a6145 100644 --- a/src/server/scripts/Commands/cs_debug.cpp +++ b/src/server/scripts/Commands/cs_debug.cpp @@ -78,7 +78,7 @@ public: { { "setbit", HandleDebugSet32BitCommand, SEC_ADMINISTRATOR, Console::No }, { "threat", HandleDebugThreatListCommand, SEC_ADMINISTRATOR, Console::No }, - { "hostil", HandleDebugHostileRefListCommand, SEC_ADMINISTRATOR, Console::No }, + { "hostile", HandleDebugHostileRefListCommand, SEC_ADMINISTRATOR, Console::No }, { "anim", HandleDebugAnimCommand, SEC_ADMINISTRATOR, Console::No }, { "arena", HandleDebugArenaCommand, SEC_ADMINISTRATOR, Console::No }, { "bg", HandleDebugBattlegroundCommand, SEC_ADMINISTRATOR, Console::No }, @@ -828,7 +828,7 @@ public: HostileReference* ref = target->getHostileRefMgr().getFirst(); uint32 count = 0; - handler->PSendSysMessage("Hostil reference list of %s (%s)", target->GetName().c_str(), target->GetGUID().ToString().c_str()); + handler->PSendSysMessage("Hostile reference list of %s (%s)", target->GetName().c_str(), target->GetGUID().ToString().c_str()); while (ref) { @@ -845,7 +845,7 @@ public: ref = ref->next(); } - handler->SendSysMessage("End of hostil reference list."); + handler->SendSysMessage("End of hostile reference list."); return true; } diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp index 69b76553ee..5ff71e9ba9 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp @@ -415,7 +415,7 @@ public: void CastSpellOnBug(Creature* target) override { target->SetFaction(FACTION_MONSTER); - target->AI()->AttackStart(me->getThreatMgr().getHostilTarget()); + target->AI()->AttackStart(me->getThreatMgr().getHostileTarget()); target->AddAura(SPELL_MUTATE_BUG, target); target->SetFullHealth(); } |
