From fbf5b9f2d79d4c83392bee22573165cb2c6d4a68 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 6 Jul 2021 10:35:44 +0200 Subject: [PATCH] - MBF21: fix for missile flag checks. --- wadsrc/static/zscript/actors/mbf21.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/actors/mbf21.zs b/wadsrc/static/zscript/actors/mbf21.zs index b55848116f..71da9e6a38 100644 --- a/wadsrc/static/zscript/actors/mbf21.zs +++ b/wadsrc/static/zscript/actors/mbf21.zs @@ -53,7 +53,7 @@ extend class Actor if (mo.bMissile || mo.bMbfBouncer) { // if spawner is also a missile, copy 'em - if (bMissile || bMbfBouncer) + if (defaults.bMissile || defaults.bMbfBouncer) { mo.target = self.target; mo.tracer = self.tracer;