updating ignore
This commit is contained in:
6
.gitignore
vendored
6
.gitignore
vendored
@@ -19,7 +19,11 @@ forge-*-changelog.txt
|
||||
1.11/usernamecache.json
|
||||
1.11/options.txt
|
||||
*.DS_Store
|
||||
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
1.11/eula.txt
|
||||
1.11/server.properties
|
||||
|
||||
# eclipse
|
||||
bin
|
||||
|
||||
@@ -94,6 +94,8 @@ public class Anvil extends CustomContainerFacing {
|
||||
//System.out.println("Tile is not null");
|
||||
//if ((player.inventory.getCurrentItem().getItem().equals(PrimalItems.STONE_GALLAGHER)) || (player.inventory.getCurrentItem().getItem() == ModItems.forgehammer)) {
|
||||
|
||||
|
||||
|
||||
if ((pItem.getItem() instanceof WorkMallet) || (pItem.getItem() == ModItems.forgehammer)) {
|
||||
|
||||
|
||||
@@ -244,6 +246,9 @@ public class Anvil extends CustomContainerFacing {
|
||||
|
||||
|
||||
if ( (!(pItem.getItem() instanceof WorkMallet)) || (!(pItem.getItem() instanceof ForgeHammer)) ) {
|
||||
if(Block.getBlockFromItem(pItem.getItem()) instanceof IngotBall) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (state.getValue(FACING) == EnumFacing.NORTH) {
|
||||
int counter = 0;
|
||||
@@ -301,8 +306,6 @@ public class Anvil extends CustomContainerFacing {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user