From 254a35d6a1c8db246e6b36dbca8a75c055b3efcc Mon Sep 17 00:00:00 2001 From: Schmoozerd Date: Sat, 14 Apr 2012 11:55:46 +0200 Subject: [PATCH] [11961] Fix logic bug in 11954. Should fix most spells of issue #44 --- src/game/Spell.cpp | 1 + src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index 609d61509..a5db748e2 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -474,6 +474,7 @@ void Spell::FillTargetMap() // Add further conditions here if required { effToIndex[i] = j; // effect i has same targeting list as effect j + break; } } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ee98b7876..e43f4a1e9 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "11960" + #define REVISION_NR "11961" #endif // __REVISION_NR_H__