From 2be6c78d5dbd1052cc4f1fc47b3c0cd65ee5e061 Mon Sep 17 00:00:00 2001 From: madpwnhammer Date: Wed, 7 Jun 2023 23:09:45 +0300 Subject: [PATCH] fix _Del gen fo ecs component --- tpl/macro.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tpl/macro.twig b/tpl/macro.twig index 925950b..0a22106 100644 --- a/tpl/macro.twig +++ b/tpl/macro.twig @@ -726,7 +726,7 @@ Script_{{o.name|norm_name}}.Method_{{m.name}}.ReturnValue(frm, stack EcsEntity e = default; stack.PopRelease().Decode(ref e); - e.Del<{{o.name}}>(); + e.Del(); return null; }