#BUG IN PVP: Can't launch a rocket
1 messages · Page 1 of 1 (latest)
Please report bugs and crashes on the forums: https://forums.factorio.com/viewforum.php?f=7
When you look on the map, do you see the surface name?
i fix it with this comand /c
local area={{left, top}, {right, bottom}}
local src_surf = game.get_surface("battle_surface_1")
src_surf.clone_area{source_area=area, destination_area=area, destination_surface="nauvis", clone_tiles=true, clone_entities=true, clone_decoratives=true, clear_destination_entities=true, clear_destination_decoratives=true, expand_map=true} for k, force in pairs(game.forces) do force.set_spawn_position(force.get_spawn_position("battle_surface_1"), "nauvis") force.copy_chart(force, "battle_surface_1", "nauvis") force.set_surface_hidden("nauvis", false) end
for k, player in pairs(game.players) do player.teleport(player.position, "nauvis", false, false) end storage.pvp.surface = game.surfaces.nauvis game.delete_surface("battle_surface_1")
Yeah I was going to direct you to that thread cause it was solved already haha. Just checking if it was the same issue