diff options
| author | Dmitry Koteroff | 2017-12-12 05:14:38 +0300 |
|---|---|---|
| committer | Dmitry Koteroff | 2017-12-15 21:51:13 +0300 |
| commit | 5302fd125b36d453615483f6ced4e40e973c499a (patch) | |
| tree | 21a1e12476e0a6a7eec2e111143bf426ead2ea33 /core/variant_call.cpp | |
| parent | 36ce7c444d350b5fcd909f105fb6ca200f9d09df (diff) | |
| download | godot-5302fd125b36d453615483f6ced4e40e973c499a.tar.gz godot-5302fd125b36d453615483f6ced4e40e973c499a.tar.zst godot-5302fd125b36d453615483f6ced4e40e973c499a.zip | |
Diffstat (limited to 'core/variant_call.cpp')
| -rw-r--r-- | core/variant_call.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/variant_call.cpp b/core/variant_call.cpp index f66cce85c..2b99a60ba 100644 --- a/core/variant_call.cpp +++ b/core/variant_call.cpp @@ -254,7 +254,7 @@ struct _VariantCall { VCALL_LOCALMEM2R(String, replacen); VCALL_LOCALMEM2R(String, insert); VCALL_LOCALMEM0R(String, capitalize); - VCALL_LOCALMEM2R(String, split); + VCALL_LOCALMEM3R(String, split); VCALL_LOCALMEM2R(String, split_floats); VCALL_LOCALMEM0R(String, to_upper); VCALL_LOCALMEM0R(String, to_lower); @@ -1446,7 +1446,7 @@ void register_variant_methods() { ADDFUNC2R(STRING, STRING, String, replacen, STRING, "what", STRING, "forwhat", varray()); ADDFUNC2R(STRING, STRING, String, insert, INT, "position", STRING, "what", varray()); ADDFUNC0R(STRING, STRING, String, capitalize, varray()); - ADDFUNC2R(STRING, POOL_STRING_ARRAY, String, split, STRING, "divisor", BOOL, "allow_empty", varray(true)); + ADDFUNC3R(STRING, POOL_STRING_ARRAY, String, split, STRING, "divisor", BOOL, "allow_empty", INT, "maxsplit", varray(true, 0)); ADDFUNC2R(STRING, POOL_REAL_ARRAY, String, split_floats, STRING, "divisor", BOOL, "allow_empty", varray(true)); ADDFUNC0R(STRING, STRING, String, to_upper, varray()); |
