Removed unused settings from Settings

recoverSuperFlat (is a flag) and muteDeathMessages (an external plugin can do it)
This commit is contained in:
Florian CUNY 2018-08-06 16:08:45 +02:00
parent 941c81cb6f
commit 28cf3ca278

View File

@ -94,17 +94,6 @@ public class Settings implements DataObject {
@ConfigEntry(path = "general.database.backup-period") @ConfigEntry(path = "general.database.backup-period")
private int databaseBackupPeriod = 5; private int databaseBackupPeriod = 5;
@ConfigComment("Recover super flat - if the generator does not run for some reason, you can get")
@ConfigComment("super flat chunks (grass). To remove automatically, select this option. Turn off")
@ConfigComment("if there are no more because it may cause lag.")
@ConfigComment("This will regenerate any chunks with bedrock at y=0 when they are loaded")
@ConfigEntry(path = "general.recover-super-flat")
private boolean recoverSuperFlat = false;
@ConfigComment("Mute death messages")
@ConfigEntry(path = "general.mute-death-messages")
private boolean muteDeathMessages = false;
@ConfigComment("Allow FTB Autonomous Activator to work (will allow a pseudo player [CoFH] to place and break blocks and hang items)") @ConfigComment("Allow FTB Autonomous Activator to work (will allow a pseudo player [CoFH] to place and break blocks and hang items)")
@ConfigComment("Add other fake player names here if required") @ConfigComment("Add other fake player names here if required")
@ConfigEntry(path = "general.fakeplayers") @ConfigEntry(path = "general.fakeplayers")
@ -171,7 +160,6 @@ public class Settings implements DataObject {
@ConfigEntry(path = "island.customranks") @ConfigEntry(path = "island.customranks")
private Map<String, Integer> customRanks = new HashMap<>(); private Map<String, Integer> customRanks = new HashMap<>();
//---------------------------------------------------------------------------------------/ //---------------------------------------------------------------------------------------/
@ConfigComment("These settings should not be edited") @ConfigComment("These settings should not be edited")
private String uniqueId = "config"; private String uniqueId = "config";
@ -274,20 +262,6 @@ public class Settings implements DataObject {
return databaseBackupPeriod; return databaseBackupPeriod;
} }
/**
* @return the recoverSuperFlat
*/
public boolean isRecoverSuperFlat() {
return recoverSuperFlat;
}
/**
* @return the muteDeathMessages
*/
public boolean isMuteDeathMessages() {
return muteDeathMessages;
}
/** /**
* @return the fakePlayers * @return the fakePlayers
*/ */
@ -422,20 +396,6 @@ public class Settings implements DataObject {
this.databaseBackupPeriod = databaseBackupPeriod; this.databaseBackupPeriod = databaseBackupPeriod;
} }
/**
* @param recoverSuperFlat the recoverSuperFlat to set
*/
public void setRecoverSuperFlat(boolean recoverSuperFlat) {
this.recoverSuperFlat = recoverSuperFlat;
}
/**
* @param muteDeathMessages the muteDeathMessages to set
*/
public void setMuteDeathMessages(boolean muteDeathMessages) {
this.muteDeathMessages = muteDeathMessages;
}
/** /**
* @param fakePlayers the fakePlayers to set * @param fakePlayers the fakePlayers to set
*/ */