Adjust config for new fight system
Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Ursprung
a079b25c14
Commit
5424a739d9
@ -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(){
|
||||
|
@ -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)
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren