mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-15 08:16:08 +00:00
chore(Core/Misc): Change all TODO to doxygen comment (#14966)
This commit is contained in:
@@ -200,7 +200,7 @@ public:
|
||||
break;
|
||||
case EVENT_HADRONOX_MOVE4:
|
||||
me->CastSpell(me, SPELL_WEB_FRONT_DOORS, true);
|
||||
[[fallthrough]]; // TODO: Not sure whether the fallthrough was a mistake (forgetting a break) or intended. This should be double-checked.
|
||||
[[fallthrough]]; /// @todo: Not sure whether the fallthrough was a mistake (forgetting a break) or intended. This should be double-checked.
|
||||
case EVENT_HADRONOX_MOVE1:
|
||||
case EVENT_HADRONOX_MOVE2:
|
||||
case EVENT_HADRONOX_MOVE3:
|
||||
|
||||
@@ -346,7 +346,7 @@ class spell_ahn_kahet_swarmer_aura : public SpellScript
|
||||
}
|
||||
else if (_targetCount)
|
||||
{
|
||||
// TODO: move spell id to enum
|
||||
/// @todo: move spell id to enum
|
||||
caster->CastCustomSpell(SPELL_SWARM, SPELLVALUE_AURA_STACK, _targetCount, caster, true);
|
||||
if (Aura *aur = caster->GetAura(SPELL_SWARM))
|
||||
{
|
||||
|
||||
@@ -131,7 +131,7 @@ struct npc_taldaram_flamesphere : public NullCreatureAI
|
||||
DoCastSelf(SPELL_FLAME_SPHERE_SPAWN_EFFECT);
|
||||
DoCastSelf(SPELL_FLAME_SPHERE_VISUAL);
|
||||
|
||||
// TODO: replace with DespawnOrUnsummon
|
||||
/// @todo: replace with DespawnOrUnsummon
|
||||
uiDespawnTimer = 13000;
|
||||
}
|
||||
|
||||
@@ -490,7 +490,7 @@ private:
|
||||
}
|
||||
};
|
||||
|
||||
// TODO: Turn into new script type when Gossips have been updated
|
||||
// @todo: Turn into new script type when Gossips have been updated
|
||||
class go_prince_taldaram_sphere : public GameObjectScript
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -1305,7 +1305,7 @@ public:
|
||||
|
||||
if (Creature* acolyte = me->SummonCreature((isCalledBySartharion ? NPC_ACOLYTE_OF_SHADRON : NPC_DISCIPLE_OF_SHADRON), me->GetPositionX(), me->GetPositionY(), me->GetPositionZ(), me->GetOrientation()))
|
||||
{
|
||||
// TODO: inpect JustSummoned
|
||||
/// @todo: inpect JustSummoned
|
||||
summons.Summon(acolyte);
|
||||
acolyte->SetPhaseMask(16, true);
|
||||
}
|
||||
|
||||
@@ -141,7 +141,7 @@ public:
|
||||
n2->GetMotionMaster()->MovePoint(1, NecrolytePos2);
|
||||
n2->SetUInt32Value(UNIT_NPC_EMOTESTATE, EMOTE_STATE_READY1H);
|
||||
}
|
||||
// TODO This spell check is invalid
|
||||
/// @todo This spell check is invalid
|
||||
// if (SPELL_NECROLYTE_CHANNELING)
|
||||
// {
|
||||
n1->RemoveAura(SPELL_NECROLYTE_CHANNELING);
|
||||
@@ -410,7 +410,7 @@ public:
|
||||
{
|
||||
isInvincible = true;
|
||||
|
||||
// TODO This spell check is invalid
|
||||
/// @todo This spell check is invalid
|
||||
// if (SPELL_NECROLYTE_CHANNELING)
|
||||
me->CastSpell(me, SPELL_NECROLYTE_CHANNELING, false);
|
||||
|
||||
@@ -434,7 +434,7 @@ public:
|
||||
|
||||
void EnterCombat(Unit* /*who*/) override
|
||||
{
|
||||
// TODO This spell check is invalid
|
||||
/// @todo This spell check is invalid
|
||||
// if (SPELL_NECROLYTE_CHANNELING)
|
||||
me->RemoveAura(SPELL_NECROLYTE_CHANNELING);
|
||||
events.Reset();
|
||||
|
||||
@@ -63,7 +63,7 @@ enum ScriptTexts
|
||||
SAY_INTRO_ALLIANCE_1 = 0,
|
||||
SAY_INTRO_ALLIANCE_4 = 1,
|
||||
SAY_INTRO_ALLIANCE_5 = 2,
|
||||
SAY_OUTRO_ALLIANCE_1 = 3, // TODO ALLIANCE OUTRO
|
||||
SAY_OUTRO_ALLIANCE_1 = 3, /// @todo ALLIANCE OUTRO
|
||||
SAY_OUTRO_ALLIANCE_2 = 4,
|
||||
SAY_OUTRO_ALLIANCE_3 = 5,
|
||||
SAY_OUTRO_ALLIANCE_4 = 6,
|
||||
|
||||
Reference in New Issue
Block a user