Merge pull request #92177 from KoBeWi/literally_wtf

Fix broken built-in script reloading
This commit is contained in:
Rémi Verschelde 2024-06-18 17:59:03 +02:00
commit 6c3f811f08
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -995,7 +995,7 @@ bool GDScript::_get(const StringName &p_name, Variant &r_ret) const {
bool GDScript::_set(const StringName &p_name, const Variant &p_value) {
if (p_name == GDScriptLanguage::get_singleton()->strings._script_source) {
set_source_code(p_value);
reload();
reload(true);
return true;
}