From c576847c5841b706d1c7054cc42f55025bd0a2af Mon Sep 17 00:00:00 2001 From: William Dizon Date: Mon, 9 Nov 2015 14:01:25 -0700 Subject: [PATCH] fixed issue: world_committer sending 'saveall' should be 'save-all' not 'saveall'. presumably, no practical action resulted from this feature till now. --- html/locales/locale-de_DE.json | 2 +- html/locales/locale-en_US.json | 2 +- html/locales/locale-fr_FR.json | 2 +- html/locales/locale-sv_SE.json | 2 +- mineos.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/html/locales/locale-de_DE.json b/html/locales/locale-de_DE.json index ee857107..07335b0a 100644 --- a/html/locales/locale-de_DE.json +++ b/html/locales/locale-de_DE.json @@ -88,7 +88,7 @@ "START_ON_BOOT": "Start server on boot", "UNCONVENTIONAL_SERVER": "This is not a conventional Minecraft server", "COPY_PROFILE": "Copy profile to live server files", - "COMMIT_INTERVAL": "Minutes between committing world to disk (via 'saveall')", + "COMMIT_INTERVAL": "Minutes between committing world to disk via 'save-all' (empty to disable)", "JAVA_SETTINGS": "Java Settings", "MEMORY_ALLOCATION": "RAM Einstellungen (Heapsize)", diff --git a/html/locales/locale-en_US.json b/html/locales/locale-en_US.json index 217317dd..3710f14c 100644 --- a/html/locales/locale-en_US.json +++ b/html/locales/locale-en_US.json @@ -88,7 +88,7 @@ "START_ON_BOOT": "Start server on boot", "UNCONVENTIONAL_SERVER": "This is not a conventional Minecraft server", "COPY_PROFILE": "Copy profile to live server files", - "COMMIT_INTERVAL": "Minutes between committing world to disk (via 'saveall')", + "COMMIT_INTERVAL": "Minutes between committing world to disk via 'save-all' (empty to disable)", "JAVA_SETTINGS": "Java Settings", "MEMORY_ALLOCATION": "Memory Allocation (Heapsize)", diff --git a/html/locales/locale-fr_FR.json b/html/locales/locale-fr_FR.json index dc9667d2..0bff8f9e 100644 --- a/html/locales/locale-fr_FR.json +++ b/html/locales/locale-fr_FR.json @@ -88,7 +88,7 @@ "START_ON_BOOT": "Démarrer le serveur au démarrage", "UNCONVENTIONAL_SERVER": "Ceci ne est pas un serveur Minecraft conventionnel", "COPY_PROFILE": "Copiez le profil essentiel fichiers du serveur", - "COMMIT_INTERVAL": "Minutes between committing world to disk (via 'saveall')", + "COMMIT_INTERVAL": "Minutes between committing world to disk via 'save-all' (empty to disable)", "JAVA_SETTINGS": "Paramètres Java", "MEMORY_ALLOCATION": "Allocation de mémoire", diff --git a/html/locales/locale-sv_SE.json b/html/locales/locale-sv_SE.json index a4d095d9..d749760e 100644 --- a/html/locales/locale-sv_SE.json +++ b/html/locales/locale-sv_SE.json @@ -88,7 +88,7 @@ "START_ON_BOOT": "Starta server vid systemstart", "UNCONVENTIONAL_SERVER": "Detta är INTE en konventionell server", "COPY_PROFILE": "Kopiera profil filer till live server filer", - "COMMIT_INTERVAL": "Minutes between committing world to disk (via 'saveall')", + "COMMIT_INTERVAL": "Minutes between committing world to disk via 'save-all' (empty to disable)", "JAVA_SETTINGS": "Java Inställningar", "MEMORY_ALLOCATION": "Minnes Allokering (Heapsize)", diff --git a/mineos.js b/mineos.js index a6f5b7d7..b4699a8b 100644 --- a/mineos.js +++ b/mineos.js @@ -916,7 +916,7 @@ mineos.mc = function(server_name, base_dir) { function(cb) { cb(null, child_process.spawn(binary, ['-S', 'mc-{0}'.format(self.server_name), - '-p', '0', '-X', 'eval', 'stuff "saveall\012"'.format(msg)], + '-p', '0', '-X', 'eval', 'stuff "save-all\012"'.format(msg)], params)); }, function(cb) {