mirror of
https://github.com/BentoBoxWorld/BSkyBlock.git
synced 2025-02-17 01:21:27 +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;
|
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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user