SteamWar/BungeeCore
Archiviert
13
2

Fix possible world names for paper #273

Zusammengeführt
Lixfel hat 1 Commits von fixWorldNames nach master 2021-12-16 15:45:33 +01:00 zusammengeführt

Datei anzeigen

@ -96,6 +96,8 @@ public class SubserverSystem {
if(mapName == null) if(mapName == null)
mapName = serverName; mapName = serverName;
mapName = mapName.replace(' ', '_').replace("[", "").replace("]", "");
String worldDir; String worldDir;
if(eventFightID > 0) if(eventFightID > 0)
worldDir = EVENT_PATH; worldDir = EVENT_PATH;
@ -138,7 +140,7 @@ public class SubserverSystem {
0, 0,
0, 0,
serverName, serverName,
serverName.replace(' ', '_') + eventFight.getStartTime().toLocalDateTime().format(DateTimeFormatter.ISO_TIME), serverName + eventFight.getStartTime().toLocalDateTime().format(DateTimeFormatter.ISO_TIME),
null, null,
null, null,
false); false);