Merge pull request #92177 from KoBeWi/literally_wtf
Fix broken built-in script reloading
This commit is contained in:
commit
6c3f811f08
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
bool GDScript::_set(const StringName &p_name, const Variant &p_value) {
|
||||||
if (p_name == GDScriptLanguage::get_singleton()->strings._script_source) {
|
if (p_name == GDScriptLanguage::get_singleton()->strings._script_source) {
|
||||||
set_source_code(p_value);
|
set_source_code(p_value);
|
||||||
reload();
|
reload(true);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue