Cleans up kicked-keep-inventory config setting.

https://github.com/BentoBoxWorld/BentoBox/issues/738
This commit is contained in:
tastybento 2019-06-07 22:19:41 -07:00
parent 3e26c89949
commit b2aa604419
1 changed files with 4 additions and 2 deletions

View File

@ -221,8 +221,7 @@ public class Settings implements WorldSettings {
private boolean leaversLoseReset = false;
@ConfigComment("Allow kicked players to keep their inventory.")
@ConfigComment("If false, kicked player's inventory will be thrown at the island leader if the")
@ConfigComment("kicked player is online and in the island world.")
@ConfigComment("Overrides the on-leave inventory reset for kicked players.")
@ConfigEntry(path = "island.reset.kicked-keep-inventory")
private boolean kickedKeepInventory = false;
@ -558,6 +557,7 @@ public class Settings implements WorldSettings {
/**
* @return the leaversLoseReset
*/
@Override
public boolean isLeaversLoseReset() {
return leaversLoseReset;
}
@ -565,6 +565,7 @@ public class Settings implements WorldSettings {
/**
* @return the kickedKeepInventory
*/
@Override
public boolean isKickedKeepInventory() {
return kickedKeepInventory;
}
@ -668,6 +669,7 @@ public class Settings implements WorldSettings {
/**
* @return the deathsSumTeam
*/
@Override
public boolean isDeathsSumTeam() {
return deathsSumTeam;
}