diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-07-26 20:03:13 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2017-07-26 20:03:13 +0700 |
commit | 0154098531ce928fb573ff225e0f0886043c0b21 (patch) | |
tree | b4698b48ad8eeaf063d0c55673117fbcacac51ff /core | |
parent | f5277e347df4228fc875acaa3acb9581a30ab43e (diff) |
Fix various property not found errors
Diffstat (limited to 'core')
-rw-r--r-- | core/io/resource_loader.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/io/resource_loader.cpp b/core/io/resource_loader.cpp index 285cc6e3c2..9b89fa3399 100644 --- a/core/io/resource_loader.cpp +++ b/core/io/resource_loader.cpp @@ -430,6 +430,9 @@ void ResourceLoader::reload_translation_remaps() { void ResourceLoader::load_translation_remaps() { + if (!ProjectSettings::get_singleton()->has("locale/translation_remaps")) + return; + Dictionary remaps = ProjectSettings::get_singleton()->get("locale/translation_remaps"); List<Variant> keys; remaps.get_key_list(&keys); |