diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-06-21 21:56:16 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-06-21 21:56:16 +0200 |
commit | 4a8e92e8af6465bfe37dc3e9f78fb5b51c585471 (patch) | |
tree | 2f97be3c1cf076abc1c5ead1f469f71e000c44d2 /src/server/scripts | |
parent | a0fad6faa91bcf97d89626d38f9b3e575365d056 (diff) |
Core/GameEvent: Add log for game_event_creature/game_event_gameobject contains creature/gameobject not found in table creature/gameobject table
Diffstat (limited to 'src/server/scripts')
-rw-r--r-- | src/server/scripts/Northrend/zone_zuldrak.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/scripts/Northrend/zone_zuldrak.cpp b/src/server/scripts/Northrend/zone_zuldrak.cpp index 0c85d4bf733..39cd99e55ec 100644 --- a/src/server/scripts/Northrend/zone_zuldrak.cpp +++ b/src/server/scripts/Northrend/zone_zuldrak.cpp @@ -1572,7 +1572,7 @@ public: } }; -uint32 const FetchIngredients[21] [4] = +uint32 const FetchIngredients[21][4] = { { SPELL_FETCH_KNOTROOT, SPELL_HAVE_KNOTROOT, ITEM_KNOTROOT, SAY_KNOTROOT }, { SPELL_FETCH_PICKLED_EAGLE_EGG, SPELL_HAVE_PICKLED_EAGLE_EGG, ITEM_PICKLED_EAGLE_EGG, SAY_PICKLED_EAGLE_EGG }, @@ -1673,7 +1673,6 @@ class spell_random_ingredient : public SpellScriptLoader { if (Player* player = GetHitPlayer()) { - uint8 ingredient = 0; switch (GetSpellInfo()->Id) |