Archiviert
1
0

Adjust config for new fight system

Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Lixfel 2021-03-30 19:12:00 +02:00
Ursprung a079b25c14
Commit 5424a739d9
4 geänderte Dateien mit 6 neuen und 10 gelöschten Zeilen

Datei anzeigen

@ -107,10 +107,6 @@ public class ArenaMode {
byCheckSchemType.put(this.schemType, this);
}
public String getInternalName() {
return internalName;
}
public String getDisplayName() {
return displayName;
}
@ -143,8 +139,8 @@ public class ArenaMode {
return chatNames.get(0);
}
public boolean hasChatName(){
return !chatNames.isEmpty();
public boolean withoutChatName(){
return chatNames.isEmpty();
}
public boolean isHistoric(){

Datei anzeigen

@ -108,7 +108,7 @@ public class SubserverSystem {
//Copy world
try {
new ProcessBuilder("cp", "-r", SERVER_PATH + modus.getFolder() + "/" + map, worldDir + mapName).start().waitFor();
new ProcessBuilder("cp", "-r", SERVER_PATH + modus.getFolder() + "/arenas/" + map, worldDir + mapName).start().waitFor();
} catch (IOException | InterruptedException e) {
throw new SecurityException("Could not copy folder", e);
}
@ -128,7 +128,7 @@ public class SubserverSystem {
//Start server
ProcessBuilder process = new ProcessBuilder(cmd);
process.directory(new File(SERVER_PATH, modus.getInternalName()));
process.directory(new File(SERVER_PATH, modus.getFolder()));
String finalMapName = mapName;
if(eventFightID == -1)

Datei anzeigen

@ -69,7 +69,7 @@ public class FightCommand extends BasicCommand {
TextComponent start = new TextComponent();
TextComponent current = start;
for(ArenaMode mode : ArenaMode.getAllModes()){
if(!mode.hasChatName() || mode.isHistoric() != historic)
if(mode.withoutChatName() || mode.isHistoric() != historic)
continue;
String command = precommand + mode.getChatName();
current.setBold(true);

Datei anzeigen

@ -81,7 +81,7 @@ public class RankedCommand extends BasicCommand {
TextComponent start = new TextComponent();
TextComponent current = start;
for(ArenaMode mode : ArenaMode.getAllModes()){
if(!mode.hasChatName() || !mode.isRanked())
if(mode.withoutChatName() || !mode.isRanked())
continue;
String command = precommand + mode.getChatName();
current.setBold(true);