diff --git a/tpl/macro.twig b/tpl/macro.twig index 0dcf728..f6b1d62 100644 --- a/tpl/macro.twig +++ b/tpl/macro.twig @@ -642,7 +642,11 @@ Script_{{o.name|norm_name}}.Method_{{m.name}}.ReturnValue(frm, stack {% for m in o.getfuncs %} {% if has_token(m, 'bhl_native_prefix') %} - {{ _self.reg_func_native(m, 'cl', '__self.', o) }} + {% if has_token(m, 'bhl_static') %} + {{ _self.reg_func_native(m, 'cl', '', o) }} + {% else %} + {{ _self.reg_func_native(m, 'cl', '__self.', o) }} + {% endif %} {% else %} {{ _self.method_partial(o, m, 'cl') }} {% endif %}