mirror of
https://github.com/BentoBoxWorld/AcidIsland.git
synced 2024-11-23 02:55:21 +01:00
Removes death sum setting.
This commit is contained in:
parent
5e60ba1a2d
commit
f349a56d82
@ -363,9 +363,6 @@ public class AISettings implements WorldSettings {
|
||||
@ConfigEntry(path = "island.deaths.max")
|
||||
private int deathsMax = 10;
|
||||
|
||||
@ConfigEntry(path = "island.deaths.sum-team")
|
||||
private boolean deathsSumTeam = false;
|
||||
|
||||
@ConfigComment("When a player joins a team, reset their death count")
|
||||
@ConfigEntry(path = "island.deaths.team-join-reset")
|
||||
private boolean teamJoinDeathReset = true;
|
||||
@ -709,13 +706,6 @@ public class AISettings implements WorldSettings {
|
||||
public boolean isDeathsCounted() {
|
||||
return deathsCounted;
|
||||
}
|
||||
/**
|
||||
* @return the deathsSumTeam
|
||||
*/
|
||||
@Override
|
||||
public boolean isDeathsSumTeam() {
|
||||
return deathsSumTeam;
|
||||
}
|
||||
/**
|
||||
* @return the dragonSpawn
|
||||
*/
|
||||
@ -731,7 +721,6 @@ public class AISettings implements WorldSettings {
|
||||
return endGenerate;
|
||||
}
|
||||
/**
|
||||
* @return the endIslands
|
||||
*/
|
||||
@Override
|
||||
public boolean isEndIslands() {
|
||||
@ -956,12 +945,6 @@ public class AISettings implements WorldSettings {
|
||||
public void setDeathsMax(int deathsMax) {
|
||||
this.deathsMax = deathsMax;
|
||||
}
|
||||
/**
|
||||
* @param deathsSumTeam the deathsSumTeam to set
|
||||
*/
|
||||
public void setDeathsSumTeam(boolean deathsSumTeam) {
|
||||
this.deathsSumTeam = deathsSumTeam;
|
||||
}
|
||||
/**
|
||||
* @param defaultBiome the defaultBiome to set
|
||||
*/
|
||||
|
@ -281,7 +281,6 @@ island:
|
||||
counted: true
|
||||
# Maximum number of deaths to count. The death count can be used by add-ons.
|
||||
max: 10
|
||||
sum-team: false
|
||||
# When a player joins a team, reset their death count
|
||||
team-join-reset: true
|
||||
customranks: {}
|
||||
|
Loading…
Reference in New Issue
Block a user