aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormegamage <none@none>2008-12-08 18:22:10 -0600
committermegamage <none@none>2008-12-08 18:22:10 -0600
commit91ab0288c74301f7aef2f45923f266bad50b531d (patch)
tree158c2f132ca8af9716f57bc0b988ab8d98a632d3 /src
parent8e4928a21a51a94b1d71874902f5503ff524dc45 (diff)
*Allow zero entry for script target (players).
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/Spell.h2
-rw-r--r--src/game/SpellMgr.cpp7
2 files changed, 5 insertions, 4 deletions
diff --git a/src/game/Spell.h b/src/game/Spell.h
index 9ba620b66b8..1bdb7154177 100644
--- a/src/game/Spell.h
+++ b/src/game/Spell.h
@@ -618,7 +618,7 @@ namespace Trinity
}break;
case SPELL_TARGETS_ENTRY:
{
- if(itr->getSource()->GetTypeId()!=TYPEID_UNIT || itr->getSource()->GetEntry()!= i_entry)
+ if(itr->getSource()->GetEntry()!= i_entry)
continue;
}break;
default: continue;
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp
index 8d17d94ec8e..4091efd2003 100644
--- a/src/game/SpellMgr.cpp
+++ b/src/game/SpellMgr.cpp
@@ -1685,12 +1685,13 @@ void SpellMgr::LoadSpellScriptTarget()
}
default:
{
- if( targetEntry==0 )
+ //players
+ /*if( targetEntry==0 )
{
sLog.outErrorDb("Table `spell_script_target`: target entry == 0 for not GO target type (%u).",type);
continue;
- }
- if(!sCreatureStorage.LookupEntry<CreatureInfo>(targetEntry))
+ }*/
+ if(targetEntry && !sCreatureStorage.LookupEntry<CreatureInfo>(targetEntry))
{
sLog.outErrorDb("Table `spell_script_target`: creature template entry %u does not exist.",targetEntry);
continue;