chat commands: make !qp async

Fixes #7360
This commit is contained in:
Adam
2019-01-15 10:16:46 -05:00
parent c50023eb89
commit 6182d0429b

View File

@@ -136,7 +136,7 @@ public class ChatCommandsPlugin extends Plugin
chatCommandManager.registerCommandAsync(LEVEL_COMMAND_STRING, this::playerSkillLookup);
chatCommandManager.registerCommandAsync(CLUES_COMMAND_STRING, this::clueLookup);
chatCommandManager.registerCommandAsync(KILLCOUNT_COMMAND_STRING, this::killCountLookup, this::killCountSubmit);
chatCommandManager.registerCommand(QP_COMMAND_STRING, this::questPointsLookup, this::questPointsSubmit);
chatCommandManager.registerCommandAsync(QP_COMMAND_STRING, this::questPointsLookup, this::questPointsSubmit);
}
@Override