Browse Source

GDExtension: Fix method binds not saying if they are varargs

David Snopek 9 months ago
parent
commit
2599df3b8a
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 {
 	virtual bool is_vararg() const override {
-		return false;
+		return vararg;
 	}
 	}
 
 
 #ifdef TOOLS_ENABLED
 #ifdef TOOLS_ENABLED