From 1fbced0433effb5edabc3555b2fe862ace3a0d9c Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 16 Oct 2020 14:09:29 -0400 Subject: [PATCH] Corrected loadout placement function --- core/src/mindustry/core/Control.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/core/Control.java b/core/src/mindustry/core/Control.java index 1d5e2de6fc..0b789d14fd 100644 --- a/core/src/mindustry/core/Control.java +++ b/core/src/mindustry/core/Control.java @@ -301,7 +301,7 @@ public class Control implements ApplicationListener, Loadable{ Groups.unit.clear(); Tile spawn = world.tile(sector.info.spawnPosition); - Schematics.placeLoadout(universe.getLastLoadout(), spawn.x, spawn.y); + Schematics.placeLaunchLoadout(spawn.x, spawn.y); //set up camera/player locations player.set(spawn.x * tilesize, spawn.y * tilesize);