mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-11-04 02:53:43 +01:00 
			
		
		
		
	Fixing checked data values for carrots and potatoes.
This commit is contained in:
		@@ -202,14 +202,14 @@ public class Herbalism {
 | 
			
		||||
            break;
 | 
			
		||||
 | 
			
		||||
        case CARROT:
 | 
			
		||||
            if (((byte) data) == 0x3) {
 | 
			
		||||
            if (data == CropState.RIPE.getData()) {
 | 
			
		||||
                mat = Material.CARROT;
 | 
			
		||||
                xp = Config.getInstance().getHerbalismXPCarrot();
 | 
			
		||||
            }
 | 
			
		||||
            break;
 | 
			
		||||
 | 
			
		||||
        case POTATO:
 | 
			
		||||
            if (((byte) data) == 0x3) {
 | 
			
		||||
            if (data == CropState.RIPE.getData()) {
 | 
			
		||||
                mat = Material.POTATO;
 | 
			
		||||
                xp = Config.getInstance().getHerbalismXPPotato();
 | 
			
		||||
            }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user