Selaa lähdekoodia

Update src/main/java/com/gmail/nossr50/skills/gathering/Mining.java

Another change against 1.3.2
matix931 13 vuotta sitten
vanhempi
sitoutus
91d294acff
1 muutettua tiedostoa jossa 18 lisäystä ja 0 poistoa
  1. 18 0
      src/main/java/com/gmail/nossr50/skills/gathering/Mining.java

+ 18 - 0
src/main/java/com/gmail/nossr50/skills/gathering/Mining.java

@@ -85,6 +85,12 @@ public class Mining {
                 Misc.dropItem(location, item);
             }
             break;
+            
+        case EMERALD_ORE:
+            if (configInstance.getEmeraldDoubleDropsEnabled()) {
+                Misc.dropItem(location, item);
+            }
+            break;
 
         default:
             if (ModChecks.isCustomMiningBlock(block)) {
@@ -194,6 +200,13 @@ public class Mining {
                 Misc.dropItem(location, item);
             }
             break;
+        
+        case EMERALD_ORE:
+            if (configInstance.getEmeraldDoubleDropsEnabled()) {
+                item = new ItemStack(Material.EMERALD);
+                Misc.dropItem(location, item);
+            }
+            break;
 
         default:
             if (ModChecks.isCustomMiningBlock(block)) {
@@ -279,6 +292,10 @@ public class Mining {
         case STONE:
             xp += Config.getInstance().getMiningXPStone();
             break;
+            
+        case EMERALD_ORE:
+            xp += Config.getInstance().getMiningXPEmeraldOre();
+            break;
 
         default:
             if (ModChecks.isCustomMiningBlock(block)) {
@@ -367,6 +384,7 @@ public class Mining {
             case GOLD_ORE:
             case LAPIS_ORE:
             case REDSTONE_ORE:
+            case EMERALD_ORE;
                 if (tier < 3) {
                     return;
                 }