From 28fba4f450e86744d8d2d02936ecb0987e83d4ee Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 26 Dec 2021 02:56:47 +0100 Subject: [PATCH] Move menu ship down --- mods/lzr_globals/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/lzr_globals/init.lua b/mods/lzr_globals/init.lua index 6abff5f..2a4ba1a 100644 --- a/mods/lzr_globals/init.lua +++ b/mods/lzr_globals/init.lua @@ -4,5 +4,5 @@ lzr_globals.PLAYFIELD_START = { x = -50, y = 0, z = -50 } lzr_globals.PLAYFIELD_SIZE = { x = 100, y = 100, z = 100 } lzr_globals.PLAYFIELD_END = vector.add(lzr_globals.PLAYFIELD_START, lzr_globals.PLAYFIELD_SIZE) lzr_globals.LEVEL_POS = { x = 0, y = 0, z = 0 } -lzr_globals.MENU_SHIP_POS = { x = -500, y = 0, z = -500 } +lzr_globals.MENU_SHIP_POS = { x = -500, y = -4, z = -500 } lzr_globals.MENU_SHIP_PLAYER_SPAWN_OFFSET = { x = 7, y = 8.5, z = 29 }