Add missing setters

This commit is contained in:
BONNe 2019-11-09 19:54:00 +02:00
parent 97514187a8
commit f895853bbb
1 changed files with 43 additions and 0 deletions

View File

@ -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<String> 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.