summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/BlockOre.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/minecraft/server/BlockOre.java')
-rw-r--r--src/main/java/net/minecraft/server/BlockOre.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/main/java/net/minecraft/server/BlockOre.java b/src/main/java/net/minecraft/server/BlockOre.java
index f679e3ee..7448d166 100644
--- a/src/main/java/net/minecraft/server/BlockOre.java
+++ b/src/main/java/net/minecraft/server/BlockOre.java
@@ -38,16 +38,16 @@ public class BlockOre extends Block {
int j1 = 0;
if (this.id == Block.COAL_ORE.id) {
- j1 = MathHelper.a(world.random, 0, 2);
+ j1 = MathHelper.nextInt(world.random, 0, 2);
} else if (this.id == Block.DIAMOND_ORE.id) {
- j1 = MathHelper.a(world.random, 3, 7);
+ j1 = MathHelper.nextInt(world.random, 3, 7);
} else if (this.id == Block.EMERALD_ORE.id) {
- j1 = MathHelper.a(world.random, 3, 7);
+ j1 = MathHelper.nextInt(world.random, 3, 7);
} else if (this.id == Block.LAPIS_ORE.id) {
- j1 = MathHelper.a(world.random, 2, 5);
+ j1 = MathHelper.nextInt(world.random, 2, 5);
}
- this.g(world, i, j, k, j1);
+ this.f(world, i, j, k, j1);
} */
}
@@ -56,13 +56,13 @@ public class BlockOre extends Block {
int j1 = 0;
if (this.id == Block.COAL_ORE.id) {
- j1 = MathHelper.a(world.random, 0, 2);
+ j1 = MathHelper.nextInt(world.random, 0, 2);
} else if (this.id == Block.DIAMOND_ORE.id) {
- j1 = MathHelper.a(world.random, 3, 7);
+ j1 = MathHelper.nextInt(world.random, 3, 7);
} else if (this.id == Block.EMERALD_ORE.id) {
- j1 = MathHelper.a(world.random, 3, 7);
+ j1 = MathHelper.nextInt(world.random, 3, 7);
} else if (this.id == Block.LAPIS_ORE.id) {
- j1 = MathHelper.a(world.random, 2, 5);
+ j1 = MathHelper.nextInt(world.random, 2, 5);
}
return j1;
@@ -72,7 +72,7 @@ public class BlockOre extends Block {
// CraftBukkit end
}
- protected int getDropData(int i) {
+ public int getDropData(int i) {
return this.id == Block.LAPIS_ORE.id ? 4 : 0;
}
}