From 3aec2daca16c19fad847789ee04e5a4f66bc6d2f Mon Sep 17 00:00:00 2001 From: DjWarmonger Date: Mon, 22 Jul 2013 09:01:10 +0000 Subject: [PATCH] Fixed Firewall (#1363) --- lib/CSpellHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CSpellHandler.cpp b/lib/CSpellHandler.cpp index 195831489..be539ad3b 100644 --- a/lib/CSpellHandler.cpp +++ b/lib/CSpellHandler.cpp @@ -173,7 +173,7 @@ std::vector CSpell::rangeInHexes(BattleHex centralHex, ui8 schoolLvl, ret.push_back(centralHex); addIfValid(centralHex.moveInDir(firstStep, false)); if(schoolLvl >= 2) //advanced versions of fire wall / force field cotnains of 3 hexes - addIfValid(centralHex.moveInDir(firstStep, false).moveInDir(secondStep, false)); + addIfValid(centralHex.moveInDir(secondStep, false)); //moveInDir function modifies subject hex return ret; }