Closed Matic0B closed 6 years ago
<gamemode>payload</gamemode> to set the gamemode for Payload maps in the XML
<gamemode>payload</gamemode>
https://github.com/StratusNetwork/OCN/pull/40 https://github.com/StratusNetwork/ProjectAres/pull/62
Doesn't seem to work
This is because Payload is internally known as koth, and is defined as so in PayloadDefinition. Its Stream<MapDoc.Gamemode> gamemodes() method has to be changed to return Stream.of(MapDoc.Gamemode.payload)
Stream<MapDoc.Gamemode> gamemodes()
Stream.of(MapDoc.Gamemode.payload)
<gamemode>payload</gamemode>
to set the gamemode for Payload maps in the XMLhttps://github.com/StratusNetwork/OCN/pull/40 https://github.com/StratusNetwork/ProjectAres/pull/62
Doesn't seem to work