diff --git a/21g30t1e75.js b/21g30t1e75.js index 10c4c2c..8e514a6 100644 --- a/21g30t1e75.js +++ b/21g30t1e75.js @@ -1235,19 +1235,19 @@ GameLib.CustomCode.prototype.restore = function() { if (clone.orientation === GameLib.CustomCode.ORIENTATION_UP) { - clone.backupMesh.position.y -= 0.5 * GameLib.CustomCode.BODY_SCALE_Y; - } - - if (clone.orientation === GameLib.CustomCode.ORIENTATION_DOWN) { clone.backupMesh.position.y += 0.5 * GameLib.CustomCode.BODY_SCALE_Y; } + if (clone.orientation === GameLib.CustomCode.ORIENTATION_DOWN) { + clone.backupMesh.position.y -= 0.5 * GameLib.CustomCode.BODY_SCALE_Y; + } + if (clone.orientation === GameLib.CustomCode.ORIENTATION_LEFT) { - clone.backupMesh.position.x += 0.5 * GameLib.CustomCode.BODY_SCALE_X; + clone.backupMesh.position.x -= 0.5 * GameLib.CustomCode.BODY_SCALE_X; } if (clone.orientation === GameLib.CustomCode.ORIENTATION_RIGHT) { - clone.backupMesh.position.x -= 0.5 * GameLib.CustomCode.BODY_SCALE_X; + clone.backupMesh.position.x += 0.5 * GameLib.CustomCode.BODY_SCALE_X; } clone.backupMesh.visible = true;