mirror of
https://github.com/BentoBoxWorld/BSkyBlock.git
synced 2024-11-22 11:45:36 +01:00
Cleans up kicked-keep-inventory config setting.
https://github.com/BentoBoxWorld/BentoBox/issues/738
This commit is contained in:
parent
3e26c89949
commit
b2aa604419
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user