diff --git a/src/main/java/world/bentobox/bentobox/api/configuration/WorldSettings.java b/src/main/java/world/bentobox/bentobox/api/configuration/WorldSettings.java index c0499c672..262c18fa3 100644 --- a/src/main/java/world/bentobox/bentobox/api/configuration/WorldSettings.java +++ b/src/main/java/world/bentobox/bentobox/api/configuration/WorldSettings.java @@ -283,19 +283,20 @@ public interface WorldSettings extends ConfigObject { /** * @return whether leavers should lose a reset or not + * @since 1.5.0 */ boolean isLeaversLoseReset(); /** * @return whether players keep their inventory when they are kicked + * @since 1.5.0 */ boolean isKickedKeepInventory(); - /** * @return whether the death value reported by {@link world.bentobox.bentobox.database.objects.Players#getDeaths()} * should include a sum of all players on the island or not + * @since 1.5.0 */ boolean isDeathsSumTeam(); - }