ソースを参照

Dividing by 4 was wrong.

GJ 12 年 前
コミット
e716e38386

+ 1 - 1
src/main/java/com/gmail/nossr50/skills/herbalism/Herbalism.java

@@ -274,7 +274,7 @@ public class Herbalism {
      * @return true if the ability was successful, false otherwise
      */
     private static boolean convertGreenThumbPlants(BlockState blockState, int skillLevel) {
-        int greenThumbStage = Math.min(skillLevel, greenThumbStageMaxLevel) / 4;
+        int greenThumbStage = Math.min(skillLevel, greenThumbStageMaxLevel) / greenThumbStageChangeLevel;
 
         switch(blockState.getType()) {
         case CROPS: