mirror of
https://github.com/BentoBoxWorld/CaveBlock.git
synced 2024-11-26 12:15:14 +01:00
Removes death sum setting.
This commit is contained in:
parent
12c2885b75
commit
5f1929fca2
@ -552,17 +552,6 @@ public class Settings implements WorldSettings
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This method returns the deathsSumTeam object.
|
|
||||||
* @return the deathsSumTeam object.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public boolean isDeathsSumTeam()
|
|
||||||
{
|
|
||||||
return deathsSumTeam;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method returns the teamJoinDeathReset object.
|
* This method returns the teamJoinDeathReset object.
|
||||||
* @return the teamJoinDeathReset object.
|
* @return the teamJoinDeathReset object.
|
||||||
@ -1288,17 +1277,6 @@ public class Settings implements WorldSettings
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This method sets the deathsSumTeam object value.
|
|
||||||
* @param deathsSumTeam the deathsSumTeam object new value.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDeathsSumTeam(boolean deathsSumTeam)
|
|
||||||
{
|
|
||||||
this.deathsSumTeam = deathsSumTeam;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method sets the teamJoinDeathReset object value.
|
* This method sets the teamJoinDeathReset object value.
|
||||||
* @param teamJoinDeathReset the teamJoinDeathReset object new value.
|
* @param teamJoinDeathReset the teamJoinDeathReset object new value.
|
||||||
@ -1852,9 +1830,6 @@ public class Settings implements WorldSettings
|
|||||||
@ConfigEntry(path = "island.deaths.max")
|
@ConfigEntry(path = "island.deaths.max")
|
||||||
private int deathsMax = 10;
|
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")
|
@ConfigComment("When a player joins a team, reset their death count")
|
||||||
@ConfigEntry(path = "island.deaths.team-join-reset")
|
@ConfigEntry(path = "island.deaths.team-join-reset")
|
||||||
private boolean teamJoinDeathReset = true;
|
private boolean teamJoinDeathReset = true;
|
||||||
|
@ -313,7 +313,6 @@ island:
|
|||||||
counted: true
|
counted: true
|
||||||
# Maximum number of deaths to count. The death count can be used by add-ons.
|
# Maximum number of deaths to count. The death count can be used by add-ons.
|
||||||
max: 10
|
max: 10
|
||||||
sum-team: false
|
|
||||||
# When a player joins a team, reset their death count
|
# When a player joins a team, reset their death count
|
||||||
team-join-reset: true
|
team-join-reset: true
|
||||||
protection:
|
protection:
|
||||||
|
Loading…
Reference in New Issue
Block a user