1
0
mirror of https://github.com/nkomarn/harbor.git synced 2024-12-18 22:37:36 +01:00

More work on the command/config

This commit is contained in:
BuildTools 2019-03-06 21:25:40 -08:00
parent 2ef2ea9253
commit f3e7a3b853
2 changed files with 4 additions and 0 deletions

View File

@ -72,6 +72,8 @@ messages:
reloadError: "&7Error reloading Harbor."
# Sent when player doesn't have permissions to run command
permission: "&7Insufficient permissions."
# Sent when command argument isn't recognized
unrecognized: "&7Not recognized."
# Version identifier (do not change)
version: 1.5

View File

@ -29,6 +29,8 @@ public class Command implements CommandExecutor {
return true;
}
// Unrecognized message if nothing else worked
return true;
}
}