mirror of
https://github.com/EpicEricEE/ShopChest.git
synced 2024-11-08 20:01:25 +01:00
Allow update checker to be disabled
(Only automatic update check on start; command is not affected) Fixes #208
This commit is contained in:
parent
7032209ef7
commit
cfeaf3cf8d
@ -333,6 +333,10 @@ public class ShopChest extends JavaPlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void checkForUpdates() {
|
private void checkForUpdates() {
|
||||||
|
if (!Config.enableUpdateChecker) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
new BukkitRunnable() {
|
new BukkitRunnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
|
@ -142,9 +142,10 @@ public class Config {
|
|||||||
public static boolean confirmShopping;
|
public static boolean confirmShopping;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether quality mode should be enabled
|
* <p>Whether the update checker should run on start and notify players on join.</p>
|
||||||
|
* The command is not affected by this setting and will continue to check for updates.
|
||||||
**/
|
**/
|
||||||
public static boolean enableQualityMode;
|
public static boolean enableUpdateChecker;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether hologram interaction should be enabled
|
* Whether hologram interaction should be enabled
|
||||||
@ -479,7 +480,7 @@ public class Config {
|
|||||||
hopperProtection = plugin.getConfig().getBoolean("hopper-protection");
|
hopperProtection = plugin.getConfig().getBoolean("hopper-protection");
|
||||||
explosionProtection = plugin.getConfig().getBoolean("explosion-protection");
|
explosionProtection = plugin.getConfig().getBoolean("explosion-protection");
|
||||||
confirmShopping = plugin.getConfig().getBoolean("confirm-shopping");
|
confirmShopping = plugin.getConfig().getBoolean("confirm-shopping");
|
||||||
enableQualityMode = plugin.getConfig().getBoolean("enable-quality-mode");
|
enableUpdateChecker = plugin.getConfig().getBoolean("enable-update-checker");
|
||||||
enableHologramInteraction = plugin.getConfig().getBoolean("enable-hologram-interaction");
|
enableHologramInteraction = plugin.getConfig().getBoolean("enable-hologram-interaction");
|
||||||
enableDebugLog = plugin.getConfig().getBoolean("enable-debug-log");
|
enableDebugLog = plugin.getConfig().getBoolean("enable-debug-log");
|
||||||
enableEconomyLog = plugin.getConfig().getBoolean("enable-economy-log");
|
enableEconomyLog = plugin.getConfig().getBoolean("enable-economy-log");
|
||||||
|
@ -7,6 +7,7 @@ import org.bukkit.event.player.PlayerJoinEvent;
|
|||||||
import org.bukkit.event.player.PlayerQuitEvent;
|
import org.bukkit.event.player.PlayerQuitEvent;
|
||||||
|
|
||||||
import de.epiceric.shopchest.ShopChest;
|
import de.epiceric.shopchest.ShopChest;
|
||||||
|
import de.epiceric.shopchest.config.Config;
|
||||||
import de.epiceric.shopchest.config.Placeholder;
|
import de.epiceric.shopchest.config.Placeholder;
|
||||||
import de.epiceric.shopchest.language.LanguageUtils;
|
import de.epiceric.shopchest.language.LanguageUtils;
|
||||||
import de.epiceric.shopchest.language.Message;
|
import de.epiceric.shopchest.language.Message;
|
||||||
@ -27,7 +28,7 @@ public class NotifyPlayerOnJoinListener implements Listener {
|
|||||||
public void onPlayerJoin(PlayerJoinEvent e) {
|
public void onPlayerJoin(PlayerJoinEvent e) {
|
||||||
final Player p = e.getPlayer();
|
final Player p = e.getPlayer();
|
||||||
|
|
||||||
if (plugin.isUpdateNeeded()) {
|
if (plugin.isUpdateNeeded() && Config.enableUpdateChecker) {
|
||||||
if (p.hasPermission(Permissions.UPDATE_NOTIFICATION)) {
|
if (p.hasPermission(Permissions.UPDATE_NOTIFICATION)) {
|
||||||
Utils.sendUpdateMessage(plugin, p);
|
Utils.sendUpdateMessage(plugin, p);
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,12 @@ shop-info-item: "STICK"
|
|||||||
# in order to prevent accidental purchases or sells.
|
# in order to prevent accidental purchases or sells.
|
||||||
confirm-shopping: false
|
confirm-shopping: false
|
||||||
|
|
||||||
|
# Set whether the plugin will check for updates on server start
|
||||||
|
# and notify permitted players on join.
|
||||||
|
# The command is not affected by this setting and will continue to
|
||||||
|
# check for updates.
|
||||||
|
enable-update-checker: true
|
||||||
|
|
||||||
# Set whether interaction with the hologram should be enabled.
|
# Set whether interaction with the hologram should be enabled.
|
||||||
# If set to true, a player can do the exact same thing with the
|
# If set to true, a player can do the exact same thing with the
|
||||||
# hologram, as with the chest. You can even open the chest if you
|
# hologram, as with the chest. You can even open the chest if you
|
||||||
|
Loading…
Reference in New Issue
Block a user