summaryrefslogtreecommitdiffstats
path: root/core/io/json.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/io/json.cpp')
-rw-r--r--core/io/json.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/io/json.cpp b/core/io/json.cpp
index 664ff7857b..8458fd0ec1 100644
--- a/core/io/json.cpp
+++ b/core/io/json.cpp
@@ -5,6 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
+/* Copyright (c) 2024-present Redot Engine contributors */
+/* (see REDOT_AUTHORS.md) */
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
@@ -1022,7 +1024,7 @@ Variant JSON::to_native(const Variant &p_json, bool p_allow_classes, bool p_allo
case Variant::DICTIONARY: {
Dictionary d = p_json;
if (d.has(GDTYPE)) {
- // Specific Godot Variant types serialized to JSON.
+ // Specific Redot Variant types serialized to JSON.
String type = d[GDTYPE];
if (type == Variant::get_type_name(Variant::VECTOR2)) {
ERR_FAIL_COND_V(!d.has(VALUES), Variant());