Implement toggling value update message

This commit is contained in:
ChronosX88 2021-08-04 00:42:22 +03:00
parent 97d4187af3
commit 7a2868a165
Signed by: ChronosXYZ
GPG Key ID: 085A69A82C8C511A
2 changed files with 15 additions and 12 deletions

View File

@ -12,6 +12,7 @@ public class ValueUpdates {
Placeholders plh = new Placeholders(); Placeholders plh = new Placeholders();
public void announceValue() { public void announceValue() {
if(OreMarket.main().getConfig().getBoolean("valuemessage.enabled")) {
Bukkit.getScheduler().scheduleSyncRepeatingTask(OreMarket.main(), () -> { Bukkit.getScheduler().scheduleSyncRepeatingTask(OreMarket.main(), () -> {
for (String key : Objects.requireNonNull(OreMarket.main().getGuiConfig().getConfigurationSection("items")).getKeys(false)) { for (String key : Objects.requireNonNull(OreMarket.main().getGuiConfig().getConfigurationSection("items")).getKeys(false)) {
ConfigurationSection keySection = Objects.requireNonNull(OreMarket.main().getGuiConfig().getConfigurationSection("items")).getConfigurationSection(key); ConfigurationSection keySection = Objects.requireNonNull(OreMarket.main().getGuiConfig().getConfigurationSection("items")).getConfigurationSection(key);
@ -30,4 +31,5 @@ public class ValueUpdates {
}, 0L, (OreMarket.main().getConfig().getInt("valuemessage.time")* 20L*60)); }, 0L, (OreMarket.main().getConfig().getInt("valuemessage.time")* 20L*60));
} }
}
} }

View File

@ -5,6 +5,7 @@
prefix: '&bOreMarket ' prefix: '&bOreMarket '
valuemessage: valuemessage:
enabled: true
# Time (in minutes) to send this message # Time (in minutes) to send this message
time: 5 time: 5
# The below will look like: (These values are just examples) # The below will look like: (These values are just examples)