diff --git a/datafiles/data/Nodes/Internal.zip b/datafiles/data/Nodes/Internal.zip index d1412e7e7..50738bbf7 100644 Binary files a/datafiles/data/Nodes/Internal.zip and b/datafiles/data/Nodes/Internal.zip differ diff --git a/scripts/globals/globals.gml b/scripts/globals/globals.gml index 1f2c71674..845699ad9 100644 --- a/scripts/globals/globals.gml +++ b/scripts/globals/globals.gml @@ -43,7 +43,7 @@ LATEST_VERSION = 1_18_00_0; VERSION = 1_18_07_2; SAVE_VERSION = 1_18_05_0; - VERSION_STRING = MAC? "1.18.003m" : "1.18.7.2"; + VERSION_STRING = MAC? "1.18.003m" : "1.18.8.003"; BUILD_NUMBER = 118072; PREF_VERSION = 1_17_1; diff --git a/scripts/node_value/node_value.gml b/scripts/node_value/node_value.gml index 99e1f5556..6fb723636 100644 --- a/scripts/node_value/node_value.gml +++ b/scripts/node_value/node_value.gml @@ -1604,13 +1604,14 @@ function NodeValue(_name, _node, _connect, _type, _value, _tooltip = "") constru if(tags == VALUE_TAG.updateInTrigger || tags == VALUE_TAG.updateOutTrigger) return true; if(_update) { - if(!IS_PLAYING) node.triggerRender(); + // if(!IS_PLAYING) // If you have to uncomment this. PLEASE comment the reason why so I don't have to comment it out again. + node.triggerRender(); node.valueUpdate(self.index); node.clearCacheForward(); } if(fullUpdate) RENDER_ALL - + if(!LOADING) PROJECT.modified = true; cache_value[0] = false;