Skip to content

Commit

Permalink
Replace DOS lines ends by Unix version.
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMangos committed May 3, 2010
1 parent 4f08c35 commit 7963c18
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions sql/updates/9826_01_mangos_spell_script_target.sql
@@ -1,4 +1,4 @@
ALTER TABLE db_version CHANGE COLUMN required_9803_01_mangos_spell_bonus_data required_9826_01_mangos_spell_script_target bit;

DELETE FROM `spell_script_target` WHERE `entry` IN ('38736','38729');
ALTER TABLE db_version CHANGE COLUMN required_9803_01_mangos_spell_bonus_data required_9826_01_mangos_spell_script_target bit;

DELETE FROM `spell_script_target` WHERE `entry` IN ('38736','38729');
INSERT INTO `spell_script_target` VALUES ('38736','1','22288'), ('38729','0','185191');
12 changes: 6 additions & 6 deletions src/game/SpellAuras.cpp
Expand Up @@ -2175,12 +2175,12 @@ void Aura::TriggerSpell()
case 33525:
target->CastSpell(target, trigger_spell_id, true, NULL, this, casterGUID);
return;
// Rod of Purification - for quest 10839 (Veil Skith: Darkstone of Terokk)
case 38736:
{
if(Unit* caster = GetCaster())
caster->CastSpell(target, trigger_spell_id, true, NULL, this);
return;
// Rod of Purification - for quest 10839 (Veil Skith: Darkstone of Terokk)
case 38736:
{
if(Unit* caster = GetCaster())
caster->CastSpell(target, trigger_spell_id, true, NULL, this);
return;
}
// Beacon of Light
case 53563:
Expand Down

0 comments on commit 7963c18

Please sign in to comment.