nossr50 6 年之前
父节点
当前提交
c7a49dd283
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/gmail/nossr50/datatypes/player/McMMOPlayer.java

+ 1 - 1
src/main/java/com/gmail/nossr50/datatypes/player/McMMOPlayer.java

@@ -812,7 +812,6 @@ public class McMMOPlayer {
 
 
         SuperAbility ability = skill.getAbility();
         SuperAbility ability = skill.getAbility();
         ToolType tool = skill.getTool();
         ToolType tool = skill.getTool();
-        setToolPreparationMode(tool, true);
 
 
         /*
         /*
          * Woodcutting & Axes need to be treated differently.
          * Woodcutting & Axes need to be treated differently.
@@ -832,6 +831,7 @@ public class McMMOPlayer {
                 InteractionManager.sendPlayerInformation(player, NotificationType.TOOL, tool.getRaiseTool());
                 InteractionManager.sendPlayerInformation(player, NotificationType.TOOL, tool.getRaiseTool());
             }
             }
 
 
+            setToolPreparationMode(tool, true);
             new ToolLowerTask(this, tool).runTaskLaterAsynchronously(mcMMO.p, 4 * Misc.TICK_CONVERSION_FACTOR);
             new ToolLowerTask(this, tool).runTaskLaterAsynchronously(mcMMO.p, 4 * Misc.TICK_CONVERSION_FACTOR);
         }
         }
     }
     }