Browse Source

Merge pull request #99403 from dsnopek/gdextension-fix-varargs-with-no-args

GDExtension: Fix method binds not saying if they are varargs
Thaddeus Crews 9 months ago
parent
commit
97b3dd4cfe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/extension/gdextension.cpp

+ 1 - 1
core/extension/gdextension.cpp

@@ -154,7 +154,7 @@ public:
 	}
 
 	virtual bool is_vararg() const override {
-		return false;
+		return vararg;
 	}
 
 #ifdef TOOLS_ENABLED