From bf09a89b5d9cfdee0620a80affb318b62f72b924 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 2 Jan 2017 23:26:19 +0100 Subject: [PATCH] - fixed typo in A_BrainSpit. --- wadsrc/static/zscript/doom/bossbrain.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/doom/bossbrain.txt b/wadsrc/static/zscript/doom/bossbrain.txt index f22e4dd2b0..07f0cc946a 100644 --- a/wadsrc/static/zscript/doom/bossbrain.txt +++ b/wadsrc/static/zscript/doom/bossbrain.txt @@ -253,7 +253,7 @@ extend class Actor } else { - spit.special2 = int((targ.pos.x - pos.x) / spit.Vel.y); + spit.special2 = int((targ.pos.x - pos.x) / spit.Vel.x); } // [GZ] Calculates when the projectile will have reached destination spit.special2 += level.maptime;