3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 21:10:17 +01:00

Made the order of aliases matter. We may or may not re-do this in a later build.

Dieser Commit ist enthalten in:
Rigby 2011-07-13 04:14:28 +01:00 committet von Warren Loo
Ursprung a9cdc36f2c
Commit 9e49127c7d

Datei anzeigen

@ -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()) {