diff --git a/PHI-CL/control.lua b/PHI-CL/control.lua index 63644a3..f2727e5 100644 --- a/PHI-CL/control.lua +++ b/PHI-CL/control.lua @@ -264,6 +264,17 @@ script.on_init(function() game.surfaces[1].delete_chunk({c.x, c.y}) end + local tiles = {} + + for x = -10, 10 do + for y = -10, 20 do + table.insert(tiles, {name = 'space-platform-foundation', position = {x, y}}) + end + end + + pf.surface.set_tiles{tiles, remove_colliding_entities=false} + pf.surface.create_entity{name='substation', position={-1, 6}} + if not storage.phi_cl.spaceship then storage.phi_cl.spaceship = pf end