diff --git a/scripts/system/marketplaces/marketplaces.js b/scripts/system/marketplaces/marketplaces.js index 8116b73c57..8819960354 100644 --- a/scripts/system/marketplaces/marketplaces.js +++ b/scripts/system/marketplaces/marketplaces.js @@ -343,13 +343,13 @@ var selectionDisplay = null; // for gridTool.js to ignore Entities.editEntity(pastedEntityIDs[0], offsets); } - var firstEntityProps = Entities.getEntityProperties(pastedEntityIDs[0], ["position"]); - var rezzedPos = firstEntityProps.position; + var rezPosition = Entities.getEntityProperties(pastedEntityIDs[0], "position").position; Audio.playSound(REZZING_SOUND, { volume: 1.0, - position: rezzedPos - }) + position: rezPosition, + localOnly: true + }); } else { Window.notifyEditError("Can't import entities: entities would be out of bounds.");