summaryrefslogtreecommitdiffstats
path: root/servers/text_server.cpp
diff options
context:
space:
mode:
authorrune-scape <allie.smith.epic@gmail.com>2023-12-28 14:44:23 -0800
committerrune-scape <spartacrafter@gmail.com>2024-08-29 13:39:27 -0700
commit154049ce1792a6e12b990e0a414a6c084c3b91c5 (patch)
tree102bda57c74f9efaa227c970255327f734043ce9 /servers/text_server.cpp
parent40b378e9e2338d84f897f6991cc913a713295785 (diff)
downloadredot-engine-154049ce1792a6e12b990e0a414a6c084c3b91c5.tar.gz
StringName Dictionary keys
also added 'is_string()' method to Variant and refactored many String type comparisons to use it instead
Diffstat (limited to 'servers/text_server.cpp')
-rw-r--r--servers/text_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/text_server.cpp b/servers/text_server.cpp
index 860cc5d75d..8a53b919d4 100644
--- a/servers/text_server.cpp
+++ b/servers/text_server.cpp
@@ -1988,7 +1988,7 @@ TypedArray<Vector3i> TextServer::parse_structured_text(StructuredTextParser p_pa
}
} break;
case STRUCTURED_TEXT_LIST: {
- if (p_args.size() == 1 && p_args[0].get_type() == Variant::STRING) {
+ if (p_args.size() == 1 && p_args[0].is_string()) {
Vector<String> tags = p_text.split(String(p_args[0]));
int prev = 0;
for (int i = 0; i < tags.size(); i++) {