- fixed bad variable assignment in Heresiarch.

This commit is contained in:
Christoph Oelckers 2017-01-08 18:53:02 +01:00
parent cd7986b1b1
commit abdfb8788b

View file

@ -698,8 +698,8 @@ class SorcBall2 : SorcBall
Actor parent = target;
Actor mo = Spawn("SorcFX2", Pos + (0, 0, parent.Floorclip + Heresiarch.SORC_DEFENSE_HEIGHT), ALLOW_REPLACE);
bReflective = true;
bInvulnerable = true;
parent.bReflective = true;
parent.bInvulnerable = true;
parent.args[0] = Heresiarch.SORC_DEFENSE_TIME;
if (mo) mo.target = parent;
}