[Klonan] [1.1.109] [PvP] spectating dead players are still visisble on map
Posted: Fri Jul 26, 2024 10:15 pm
When a team dies, where they are looking (besides map view) becomes visible to every living player.
While I would like spectators to be able to see where other spectators are looking, I'd rather not give the hint of where the combat might be happening to living players
This can be fixed by adding this line [3783] in pvp.lua
There also seems to be a bug where players will get randomly booted into spectator mode, but I haven't done any research into why that could be.
While I would like spectators to be able to see where other spectators are looking, I'd rather not give the hint of where the combat might be happening to living players
This can be fixed by adding this line [3783] in pvp.lua
Code: Select all
player.force = "neutral"
player.set_controller{type = defines.controllers.spectator}
+ player.show_on_map = false;
end