[11961] Fix logic bug in 11954. Should fix most spells of issue #44

This commit is contained in:
Schmoozerd 2012-04-14 11:55:46 +02:00
parent ff6bec96ae
commit 254a35d6a1
2 changed files with 2 additions and 1 deletions

View file

@ -474,6 +474,7 @@ void Spell::FillTargetMap()
// Add further conditions here if required // Add further conditions here if required
{ {
effToIndex[i] = j; // effect i has same targeting list as effect j effToIndex[i] = j; // effect i has same targeting list as effect j
break;
} }
} }

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "11960" #define REVISION_NR "11961"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__