From dfe05f10b712d644793a91c012bdf016054d5d89 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Tue, 26 Sep 2017 10:54:55 +0300 Subject: [PATCH] Fixed BlockLinesIterator class definition in ZScript https://forum.zdoom.org/viewtopic.php?t=57982 --- wadsrc/static/zscript/base.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wadsrc/static/zscript/base.txt b/wadsrc/static/zscript/base.txt index 351d4d949..f9fd571ed 100644 --- a/wadsrc/static/zscript/base.txt +++ b/wadsrc/static/zscript/base.txt @@ -449,8 +449,8 @@ class BlockLinesIterator : Object native native Vector3 position; native int portalflags; - native static BlockThingsIterator Create(Actor origin, double checkradius = -1); - native static BlockThingsIterator CreateFromPos(Vector3 pos, double checkh, double checkradius, Sector sec = null); + native static BlockLinesIterator Create(Actor origin, double checkradius = -1); + native static BlockLinesIterator CreateFromPos(Vector3 pos, double checkh, double checkradius, Sector sec = null); native bool Next(); }