From 44c0f88513f56ca10dc15e8a99334e9a9b562477 Mon Sep 17 00:00:00 2001 From: Sara Date: Fri, 16 Aug 2024 11:36:31 +0200 Subject: [PATCH] chore: forgot to make RTSGameMode a RUNTIME_CLASS --- src/register_types.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/register_types.cpp b/src/register_types.cpp index 64061fe..033c432 100644 --- a/src/register_types.cpp +++ b/src/register_types.cpp @@ -66,7 +66,7 @@ void initialize_gdextension_types(gd::ModuleInitializationLevel p_level) GDREGISTER_CLASS(NavMarker); GDREGISTER_RUNTIME_CLASS(NavRoom); GDREGISTER_RUNTIME_CLASS(Inventory); - GDREGISTER_CLASS(RTSGameMode); + GDREGISTER_RUNTIME_CLASS(RTSGameMode); GDREGISTER_RUNTIME_CLASS(RTSPlayer); }