mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-11-03 18:43:43 +01:00 
			
		
		
		
	Dividing by 4 was wrong.
This commit is contained in:
		@@ -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:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user