From a745668804f68d6fb32d5b94ef4bc6246fc27406 Mon Sep 17 00:00:00 2001 From: Oarcinae Date: Sun, 3 Jan 2021 21:01:32 -0500 Subject: [PATCH] Disable the crashed ship until I get time to turn it into a configurable feature. --- lib/separate_spawns.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/separate_spawns.lua b/lib/separate_spawns.lua index c876c79..eedc76d 100644 --- a/lib/separate_spawns.lua +++ b/lib/separate_spawns.lua @@ -297,14 +297,14 @@ function SendPlayerToNewSpawnAndCreateIt(delayedSpawn) -- final_transition_time=45} end - crash_site.create_crash_site(game.surfaces[GAME_SURFACE_NAME], - {x=delayedSpawn.pos.x+15, y=delayedSpawn.pos.y-25}, - {["spidertron"] = 1, - ["electronic-circuit"] = math.random(100,200), - ["iron-gear-wheel"] = math.random(50,100), - ["copper-cable"] = math.random(100,200), - ["steel-plate"] = math.random(50,100)}, - {["iron-plate"] = math.random(50,100)}) + -- crash_site.create_crash_site(game.surfaces[GAME_SURFACE_NAME], + -- {x=delayedSpawn.pos.x+15, y=delayedSpawn.pos.y-25}, + -- {["spidertron"] = 1, + -- ["electronic-circuit"] = math.random(100,200), + -- ["iron-gear-wheel"] = math.random(50,100), + -- ["copper-cable"] = math.random(100,200), + -- ["steel-plate"] = math.random(50,100)}, + -- {["iron-plate"] = math.random(50,100)}) end function DisplayWelcomeGroundTextAtSpawn(player, pos)