diff --git a/src/core/Global.ttslua b/src/core/Global.ttslua index 39394941..699832bf 100644 --- a/src/core/Global.ttslua +++ b/src/core/Global.ttslua @@ -141,6 +141,7 @@ function onLoad(savedData) resetChaosTokenStatTracker() getModVersion() + onClick_refreshList() math.randomseed(os.time()) end @@ -724,9 +725,10 @@ function complete_obj_download(request, params) if replaced_object then local pos = replaced_object.getPosition() local rot = replaced_object.getRotation() + local scale = replaced_object.getScale() destroyObject(replaced_object) Wait.frames(function() - spawnObjectJSON({json = json, position = pos, rotation = rot}) + spawnObjectJSON({ json = json, position = pos, rotation = rot, scale = scale }) end, 1) else spawnObjectJSON({json = json})