Skip to content

Commit

Permalink
Match ::cmb command order to skill list (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
conker-rsc authored Dec 24, 2023
1 parent ec9b0a6 commit d770066
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Game/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -2099,10 +2099,10 @@ private static String processClientChatCommand(String line) {
+ calcCombatLevel()
+ " @lre@A:@whi@ "
+ base_level[SKILL_ATTACK]
+ " @lre@S:@whi@ "
+ base_level[SKILL_STRENGTH]
+ " @lre@D:@whi@ "
+ base_level[SKILL_DEFENSE]
+ " @lre@S:@whi@ "
+ base_level[SKILL_STRENGTH]
+ " @lre@H:@whi@ "
+ base_level[SKILL_HP]
+ " @lre@R:@whi@ "
Expand All @@ -2118,10 +2118,10 @@ private static String processClientChatCommand(String line) {
+ calcCombatLevel()
+ " A:"
+ base_level[SKILL_ATTACK]
+ " S:"
+ base_level[SKILL_STRENGTH]
+ " D:"
+ base_level[SKILL_DEFENSE]
+ " S:"
+ base_level[SKILL_STRENGTH]
+ " H:"
+ base_level[SKILL_HP]
+ " R:"
Expand Down

0 comments on commit d770066

Please sign in to comment.