From 700aeaf192bea7b865736dfd2309939ff301579c Mon Sep 17 00:00:00 2001 From: Henk Roos Date: Sat, 25 Nov 2017 14:54:48 +0100 Subject: [PATCH] Added 'static' to CreateCeiling (base.txt) Keyword 'static'was missing in CreateCeiling. --- wadsrc/static/zscript/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/base.txt b/wadsrc/static/zscript/base.txt index 89dd0ab7d..e38517142 100644 --- a/wadsrc/static/zscript/base.txt +++ b/wadsrc/static/zscript/base.txt @@ -796,7 +796,7 @@ class Ceiling : MovingCeiling native crushSlowdown = 2 } - native bool CreateCeiling(sector sec, int type, line ln, double speed, double speed2, double height = 0, int crush = -1, int silent = 0, int change = 0, int crushmode = crushDoom); + native static bool CreateCeiling(sector sec, int type, line ln, double speed, double speed2, double height = 0, int crush = -1, int silent = 0, int change = 0, int crushmode = crushDoom); }