mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-13 11:18:23 +01:00
Made the order of aliases matter. We may or may not re-do this in a later build.
This commit is contained in:
parent
a9cdc36f2c
commit
9e49127c7d
1 changed files with 1 additions and 1 deletions
|
@ -567,7 +567,7 @@ public final class CraftServer implements Server {
|
|||
|
||||
public Map<String, String[]> getCommandAliases() {
|
||||
ConfigurationNode node = configuration.getNode("aliases");
|
||||
Map<String, String[]> result = new HashMap<String, String[]>();
|
||||
Map<String, String[]> result = new LinkedHashMap<String, String[]>();
|
||||
|
||||
if (node != null) {
|
||||
for (String key : node.getKeys()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue