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; private boolean leaversLoseReset = false;
@ConfigComment("Allow kicked players to keep their inventory.") @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("Overrides the on-leave inventory reset for kicked players.")
@ConfigComment("kicked player is online and in the island world.")
@ConfigEntry(path = "island.reset.kicked-keep-inventory") @ConfigEntry(path = "island.reset.kicked-keep-inventory")
private boolean kickedKeepInventory = false; private boolean kickedKeepInventory = false;
@ -558,6 +557,7 @@ public class Settings implements WorldSettings {
/** /**
* @return the leaversLoseReset * @return the leaversLoseReset
*/ */
@Override
public boolean isLeaversLoseReset() { public boolean isLeaversLoseReset() {
return leaversLoseReset; return leaversLoseReset;
} }
@ -565,6 +565,7 @@ public class Settings implements WorldSettings {
/** /**
* @return the kickedKeepInventory * @return the kickedKeepInventory
*/ */
@Override
public boolean isKickedKeepInventory() { public boolean isKickedKeepInventory() {
return kickedKeepInventory; return kickedKeepInventory;
} }
@ -668,6 +669,7 @@ public class Settings implements WorldSettings {
/** /**
* @return the deathsSumTeam * @return the deathsSumTeam
*/ */
@Override
public boolean isDeathsSumTeam() { public boolean isDeathsSumTeam() {
return deathsSumTeam; return deathsSumTeam;
} }