Skip to content

Commit

Permalink
fixed issue: world_committer sending 'saveall'
Browse files Browse the repository at this point in the history
should be 'save-all' not 'saveall'.  presumably, no practical action
resulted from this feature till now.
  • Loading branch information
hexparrot committed Nov 9, 2015
1 parent b19f851 commit c576847
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion html/locales/locale-de_DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down
2 changes: 1 addition & 1 deletion html/locales/locale-en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down
2 changes: 1 addition & 1 deletion html/locales/locale-fr_FR.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion html/locales/locale-sv_SE.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down
2 changes: 1 addition & 1 deletion mineos.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c576847

Please sign in to comment.