mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-04 19:46:27 +00:00
Merge branch '2.x' into custom-currency-formatting
This commit is contained in:
commit
d37433e81c
37 changed files with 364 additions and 40 deletions
|
@ -12,7 +12,9 @@ import java.math.BigDecimal;
|
|||
import java.text.NumberFormat;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Set;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
|
||||
public interface ISettings extends IConf {
|
||||
|
@ -247,6 +249,16 @@ public interface ISettings extends IConf {
|
|||
boolean isWorldTimePermissions();
|
||||
|
||||
boolean isSpawnOnJoin();
|
||||
|
||||
boolean isTeleportToCenterLocation();
|
||||
|
||||
boolean isCommandCooldownsEnabled();
|
||||
|
||||
long getCommandCooldownMs(String label);
|
||||
|
||||
Entry<Pattern, Long> getCommandCooldownEntry(String label);
|
||||
|
||||
boolean isCommandCooldownPersistent(String label);
|
||||
|
||||
NumberFormat getCurrencyFormat();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue