Added javadoc since tags in WorldSettings

This commit is contained in:
Florian CUNY 2019-06-08 08:01:42 +02:00
parent efdb9a25dc
commit c79df4c813

View File

@ -283,19 +283,20 @@ public interface WorldSettings extends ConfigObject {
/** /**
* @return whether leavers should lose a reset or not * @return whether leavers should lose a reset or not
* @since 1.5.0
*/ */
boolean isLeaversLoseReset(); boolean isLeaversLoseReset();
/** /**
* @return whether players keep their inventory when they are kicked * @return whether players keep their inventory when they are kicked
* @since 1.5.0
*/ */
boolean isKickedKeepInventory(); boolean isKickedKeepInventory();
/** /**
* @return whether the death value reported by {@link world.bentobox.bentobox.database.objects.Players#getDeaths()} * @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 * should include a sum of all players on the island or not
* @since 1.5.0
*/ */
boolean isDeathsSumTeam(); boolean isDeathsSumTeam();
} }