mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-19 10:25:00 +00:00
Removed outdated config entries
This commit is contained in:
parent
82107d0bc8
commit
20d624a571
@ -11,7 +11,6 @@ import java.util.List;
|
|||||||
public class VoxelSniperConfiguration {
|
public class VoxelSniperConfiguration {
|
||||||
public static final String CONFIG_IDENTIFIER_LITESNIPER_MAX_BRUSH_SIZE = "litesniper-max-brush-size";
|
public static final String CONFIG_IDENTIFIER_LITESNIPER_MAX_BRUSH_SIZE = "litesniper-max-brush-size";
|
||||||
public static final String CONFIG_IDENTIFIER_UNDO_CACHE_SIZE = "undo-cache-size";
|
public static final String CONFIG_IDENTIFIER_UNDO_CACHE_SIZE = "undo-cache-size";
|
||||||
public static final String CONFIG_IDENTIFIER_LITESNIPER_RESTRICTED_ITEMS = "litesniper-restricted-items";
|
|
||||||
public static final String CONFIG_IDENTIFIER_MESSAGE_ON_LOGIN_ENABLED = "message-on-login-enabled";
|
public static final String CONFIG_IDENTIFIER_MESSAGE_ON_LOGIN_ENABLED = "message-on-login-enabled";
|
||||||
public static final int DEFAULT_LITESNIPER_MAX_BRUSH_SIZE = 5;
|
public static final int DEFAULT_LITESNIPER_MAX_BRUSH_SIZE = 5;
|
||||||
public static final int DEFAULT_UNDO_CACHE_SIZE = 20;
|
public static final int DEFAULT_UNDO_CACHE_SIZE = 20;
|
||||||
@ -61,25 +60,6 @@ public class VoxelSniperConfiguration {
|
|||||||
configuration.set(CONFIG_IDENTIFIER_LITESNIPER_MAX_BRUSH_SIZE, size);
|
configuration.set(CONFIG_IDENTIFIER_LITESNIPER_MAX_BRUSH_SIZE, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns List of restricted Litesniper Items.
|
|
||||||
*
|
|
||||||
* @return List of restricted Litesniper Items
|
|
||||||
*/
|
|
||||||
public List<Integer> getLiteSniperRestrictedItems() {
|
|
||||||
return configuration.getIntegerList(CONFIG_IDENTIFIER_LITESNIPER_RESTRICTED_ITEMS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set new list of restricted Litesniper Items.
|
|
||||||
*
|
|
||||||
* @param restrictedItems List of restricted Litesniper Items
|
|
||||||
*/
|
|
||||||
public void setLitesniperRestrictedItems(List<Integer> restrictedItems) {
|
|
||||||
Preconditions.checkNotNull(restrictedItems, "Restricted items must be a list.");
|
|
||||||
configuration.set(CONFIG_IDENTIFIER_LITESNIPER_RESTRICTED_ITEMS, restrictedItems);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns if the login message is enabled.
|
* Returns if the login message is enabled.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user