Jump to content

Avensis

Members
  • Posts

    2
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Avensis's Achievements

Newbie

Newbie (1/3)

0

Reputation

  1. Fix for small typo in 5721_mangos_spell_affect.sql, there was a dot instead of a comma. Index: sql/updates/5721_mangos_spell_affect.sql =================================================================== --- sql/updates/5721_mangos_spell_affect.sql (revision 5724) +++ sql/updates/5721_mangos_spell_affect.sql (working copy) @@ -6,7 +6,7 @@ INSERT INTO `spell_affect` VALUES (43743,1,0,0x0000000000000400,0); -DELETE FROM `spell_affect` WHERE `entry` IN (13733,13865.13866); +DELETE FROM `spell_affect` WHERE `entry` IN (13733,13865,13866); INSERT INTO `spell_affect` VALUES (13733,0,0,0x0000000000000004,0), (13733,1,0,0x0000000400000000,0),
  2. crearture -> creature Index: src/game/Unit.cpp =================================================================== --- src/game/Unit.cpp (revision 5677) +++ src/game/Unit.cpp (working copy) @@ -888,7 +888,7 @@ if(!spellInfo) { - sLog.outError("CastSpell: unknown spell id %i by caster: %s %u)", spellId,(GetTypeId()==TYPEID_PLAYER ? "player (GUID:" : "crearture (Entry:"), (GetTypeId()==TYPEID_PLAYER ? GetGUIDLow() : GetEntry())); + sLog.outError("CastSpell: unknown spell id %i by caster: %s %u)", spellId,(GetTypeId()==TYPEID_PLAYER ? "player (GUID:" : "creature (Entry:"), (GetTypeId()==TYPEID_PLAYER ? GetGUIDLow() : GetEntry())); return; } @@ -899,7 +899,7 @@ { if(!spellInfo) { - sLog.outError("CastSpell: unknown spell by caster: %s %u)", (GetTypeId()==TYPEID_PLAYER ? "player (GUID:" : "crearture (Entry:"), (GetTypeId()==TYPEID_PLAYER ? GetGUIDLow() : GetEntry())); + sLog.outError("CastSpell: unknown spell by caster: %s %u)", (GetTypeId()==TYPEID_PLAYER ? "player (GUID:" : "creature (Entry:"), (GetTypeId()==TYPEID_PLAYER ? GetGUIDLow() : GetEntry())); return; }
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use