diff options
author | kobewi <kobewi4e@gmail.com> | 2022-04-23 02:54:57 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-07-12 00:44:13 +0200 |
commit | 2f777b9a1ebf0b0cd16c7c8d32e465a044241263 (patch) | |
tree | cb140637f7bafd6db4e9c85f7b4894d05827f131 /modules | |
parent | 9b3972ad48393559f772151646304e28f938a6fa (diff) |
Remove unused hints
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index bf83353ead..e7aa3214b4 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -1524,7 +1524,6 @@ void GDScriptInstance::get_method_list(List<MethodInfo> *p_list) const { for (const KeyValue<StringName, GDScriptFunction *> &E : sptr->member_functions) { MethodInfo mi; mi.name = E.key; - mi.flags |= METHOD_FLAG_FROM_SCRIPT; for (int i = 0; i < E.value->get_argument_count(); i++) { mi.arguments.push_back(PropertyInfo(Variant::NIL, "arg" + itos(i))); } |