diff --git a/resources/en.yml b/resources/en.yml index 24c1c78..56db2df 100644 --- a/resources/en.yml +++ b/resources/en.yml @@ -9,6 +9,7 @@ commands: updater: sucessDownload: 'An update is already downloaded. Please restart, or reload the server to take effect' + sucessDownloadMessage: 'Update downloaded successfuly!' failedDownload: 'An update is available, but the latest download attemp is failed. Sent notification to plugin developer!' failedCheck: 'An error has occurred while checking for updates. Sent notification to plugin developer!' updateAvailable1: 'An update available for this plugin.' diff --git a/resources/hu.yml b/resources/hu.yml index 9eadb36..ff11c41 100644 --- a/resources/hu.yml +++ b/resources/hu.yml @@ -9,6 +9,7 @@ commands: updater: sucessDownload: 'Egy frissítés már letöltésre került. Indítsd újra, vagy reload-old a szervert a változások érvénybeléptetéséhez' + sucessDownloadMessage: 'A frissítés sikeresen letöltve' failedDownload: 'Egy frissítés elérhető, bár az utolsó letöltési próbálkozás sikertelen volt. Jelentés elküldve a fejlesztőnek!' failedCheck: 'Egy hiba lépett fel a frissítések ellenőrzése közben. Jelentés elküldve a fejlesztőnek!' updateAvailable1: 'Egy frissítés érhető el ehhez a pluginhoz.' diff --git a/src/com/Zolli/EnderCore/Commands/command/updateCommand.java b/src/com/Zolli/EnderCore/Commands/command/updateCommand.java index 04dc2f3..c84dc2c 100644 --- a/src/com/Zolli/EnderCore/Commands/command/updateCommand.java +++ b/src/com/Zolli/EnderCore/Commands/command/updateCommand.java @@ -45,6 +45,10 @@ public boolean execute(CommandSender sender, String[] args,String chainedParams) } else if(args[1].equalsIgnoreCase("download")) { if(this.plugin.updater.getResult().equals(updateResult.UPDATE_AVAILABLE)) { this.plugin.updater.downloadUpdate(); + + if(this.plugin.updater.getResult().equals(updateResult.SUCCESS)) { + sender.sendMessage(this.plugin.local.getLocalizedString("updater.sucessDownloadMessage")); + } } else { sender.sendMessage(this.plugin.local.getLocalizedString("updater.noUpdate")); }