Fix for nether quartz not generating in the nether, Closes #454

This commit is contained in:
LexManos 2013-03-13 11:51:36 -07:00
parent 81c00a89c5
commit 58ad89ca90

View file

@ -697,7 +697,7 @@
+ */
+ public boolean isGenMineableReplaceable(World world, int x, int y, int z, int target)
+ {
+ return blockID == stone.blockID;
+ return blockID == target;
+ }
+
+ /**