diff --git a/src/main/java/world/bentobox/caveblock/Settings.java b/src/main/java/world/bentobox/caveblock/Settings.java index 9b4a7a6..cca21c4 100644 --- a/src/main/java/world/bentobox/caveblock/Settings.java +++ b/src/main/java/world/bentobox/caveblock/Settings.java @@ -1128,6 +1128,17 @@ public class Settings implements WorldSettings } + /** + * This method sets the fallingBannedCommands object value. + * @param fallingBannedCommands the fallingBannedCommands object new value. + * + */ + public void setFallingBannedCommands(List fallingBannedCommands) + { + this.fallingBannedCommands = fallingBannedCommands; + } + + /** * This method sets the maxTeamSize object value. * @param maxTeamSize the maxTeamSize object new value. @@ -1249,6 +1260,38 @@ public class Settings implements WorldSettings } + /** + * This method sets the createCaveOnFirstLoginEnabled object value. + * @param createCaveOnFirstLoginEnabled the createCaveOnFirstLoginEnabled object new value. + * + */ + public void setCreateCaveOnFirstLoginEnabled(boolean createCaveOnFirstLoginEnabled) + { + this.createCaveOnFirstLoginEnabled = createCaveOnFirstLoginEnabled; + } + + /** + * This method sets the createCaveOnFirstLoginDelay object value. + * @param createCaveOnFirstLoginDelay the createCaveOnFirstLoginDelay object new value. + * + */ + public void setCreateCaveOnFirstLoginDelay(int createCaveOnFirstLoginDelay) + { + this.createCaveOnFirstLoginDelay = createCaveOnFirstLoginDelay; + } + + + /** + * This method sets the createCaveOnFirstLoginDelay object value. + * @param createCaveOnFirstLoginAbortOnLogout the createCaveOnFirstLoginDelay object new value. + * + */ + public void setCreateCaveOnFirstLoginAbortOnLogout(boolean createCaveOnFirstLoginAbortOnLogout) + { + this.createCaveOnFirstLoginAbortOnLogout = createCaveOnFirstLoginAbortOnLogout; + } + + /** * This method sets the allowSetHomeInNether object value. * @param allowSetHomeInNether the allowSetHomeInNether object new value.