浏览代码

Debug message color tweaks

nossr50 5 年之前
父节点
当前提交
c3ec6a0b80
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/main/java/com/gmail/nossr50/util/skills/PerksUtils.java

+ 3 - 3
src/main/java/com/gmail/nossr50/util/skills/PerksUtils.java

@@ -78,9 +78,9 @@ public final class PerksUtils {
         float modifiedXP = (float) (xp * modifier);
 
         if(UserManager.getPlayer(player) != null && UserManager.getPlayer(player).isDebugMode()) {
-            player.sendMessage(ChatColor.GOLD + "[DEBUG] " + ChatColor.RESET + "XP Perk Multiplier - " + ChatColor.GREEN + modifier);
-            player.sendMessage(ChatColor.GOLD + "[DEBUG] " + ChatColor.RESET + "Original XP before perk boosts " + ChatColor.DARK_GRAY + originalXP);
-            player.sendMessage(ChatColor.GOLD + "[DEBUG] " + ChatColor.RESET + "XP AFTER PERKS " + ChatColor.RED + modifiedXP);
+            player.sendMessage(ChatColor.GOLD + "[DEBUG] " + ChatColor.RESET + "XP Perk Multiplier - " + ChatColor.GOLD + modifier);
+            player.sendMessage(ChatColor.GOLD + "[DEBUG] " + ChatColor.RESET + "Original XP before perk boosts " + ChatColor.RED + originalXP);
+            player.sendMessage(ChatColor.GOLD + "[DEBUG] " + ChatColor.RESET + "XP AFTER PERKS " + ChatColor.DARK_RED + modifiedXP);
         }
 
         return modifiedXP;