From 03123b96de2b8b2b5684fae4f9b9095094d356db Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Mon, 25 Aug 2025 01:50:45 -0400 Subject: [PATCH] - missed one --- wadsrc/static/zscript/events.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/events.zs b/wadsrc/static/zscript/events.zs index c851c05d0..270bae69e 100644 --- a/wadsrc/static/zscript/events.zs +++ b/wadsrc/static/zscript/events.zs @@ -221,7 +221,7 @@ class StaticEventHandler : Object native play version("2.4") class EventHandler : StaticEventHandler native version("2.4") { - clearscope static native StaticEventHandler Find(class type); + clearscope static native StaticEventHandler Find(class type, bool subclass = false); clearscope static native void SendNetworkEvent(String name, int arg1 = 0, int arg2 = 0, int arg3 = 0); version("4.12") clearscope static native vararg bool SendNetworkCommand(Name cmd, ...); version("4.12") clearscope static native bool SendNetworkBuffer(Name cmd, NetworkBuffer buffer);