mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-12 03:19:09 +01:00
Drill + Torches = Instant 3x3 Mining? Nope!
This commit is contained in:
parent
638186f975
commit
1c99053f8d
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ public class ItemDrill extends ItemEnergy{
|
||||||
}
|
}
|
||||||
|
|
||||||
//Break Blocks around
|
//Break Blocks around
|
||||||
if(radius > 0){
|
if(radius > 0 && mainHardness >= 0.2F){
|
||||||
for(int xPos = x-xRange; xPos <= x+xRange; xPos++){
|
for(int xPos = x-xRange; xPos <= x+xRange; xPos++){
|
||||||
for(int yPos = y-yRange; yPos <= y+yRange; yPos++){
|
for(int yPos = y-yRange; yPos <= y+yRange; yPos++){
|
||||||
for(int zPos = z-zRange; zPos <= z+zRange; zPos++){
|
for(int zPos = z-zRange; zPos <= z+zRange; zPos++){
|
||||||
|
|
Loading…
Reference in a new issue