mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/AI: silence a freaking annoying VS IntelliSense warning
This commit is contained in:
@@ -34,9 +34,11 @@
|
||||
// Spell summary for ScriptedAI::SelectSpell
|
||||
struct TSpellSummary
|
||||
{
|
||||
uint8 Targets; // set of enum SelectTarget
|
||||
uint8 Effects; // set of enum SelectEffect
|
||||
} extern* SpellSummary;
|
||||
uint8 Targets; // set of enum SelectTarget
|
||||
uint8 Effects; // set of enum SelectEffect
|
||||
};
|
||||
|
||||
extern TSpellSummary* SpellSummary;
|
||||
|
||||
void SummonList::Summon(Creature const* summon)
|
||||
{
|
||||
|
||||
@@ -986,8 +986,8 @@ private:
|
||||
|
||||
struct TSpellSummary
|
||||
{
|
||||
uint8 Targets; // set of enum SelectTarget
|
||||
uint8 Effects; // set of enum SelectEffect
|
||||
uint8 Targets; // set of enum SelectTarget
|
||||
uint8 Effects; // set of enum SelectEffect
|
||||
} *SpellSummary;
|
||||
|
||||
ScriptObject::ScriptObject(char const* name) : _name(name)
|
||||
|
||||
Reference in New Issue
Block a user