summaryrefslogtreecommitdiff
path: root/modules/gdscript/gd_script.cpp
diff options
context:
space:
mode:
authorJames McLean <james@mcleanlabs.ca>2015-06-23 18:22:14 -0400
committerJames McLean <james@mcleanlabs.ca>2015-06-23 18:22:14 -0400
commitd23ee8eb017d14c0efb3e07b6437987fd78a0955 (patch)
treeef177d20949cb879f4c55c6b159eedd0b03ab83b /modules/gdscript/gd_script.cpp
parent2f882abb65f185adde9d4f569fe9df022babbc40 (diff)
parente42aed6ed059b23c100f5a0bc5170831f12400aa (diff)
Merge branch 'master' of github.com:okamstudio/godot into development
Diffstat (limited to 'modules/gdscript/gd_script.cpp')
-rw-r--r--modules/gdscript/gd_script.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/gdscript/gd_script.cpp b/modules/gdscript/gd_script.cpp
index ceca1ff2b9..70a5fd985c 100644
--- a/modules/gdscript/gd_script.cpp
+++ b/modules/gdscript/gd_script.cpp
@@ -2131,7 +2131,6 @@ bool GDInstance::set(const StringName& p_name, const Variant& p_value) {
{
const Map<StringName,GDScript::MemberInfo>::Element *E = script->member_indices.find(p_name);
if (E) {
- members[E->get().index]=p_value;
if (E->get().setter) {
const Variant *val=&p_value;
Variant::CallError err;
@@ -2140,6 +2139,8 @@ bool GDInstance::set(const StringName& p_name, const Variant& p_value) {
return true; //function exists, call was successful
}
}
+ else
+ members[E->get().index] = p_value;
return true;
}
}