Skip to content

Commit

Permalink
Fix locks not going on lockers on servers
Browse files Browse the repository at this point in the history
  • Loading branch information
copyboy committed Oct 21, 2013
1 parent 5114169 commit 5cb63c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/net/mcft/copy/betterstorage/block/BlockLocker.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public BlockLocker(int id) {

setHardness(2.5f);
setStepSound(soundWoodFootstep);
setBlockBounds(1 / 16.0F, 1 / 16.0F, 1 / 16.0F, 15 / 16.0F, 15 / 16.0F, 15 / 16.0F);

MinecraftForge.setBlockHarvestLevel(this, "axe", 0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public BlockReinforcedLocker(int id, Material material) {
setHardness(8.0F);
setResistance(20.0F);
setStepSound(soundWoodFootstep);
setBlockBounds(1 / 16.0F, 1 / 16.0F, 1 / 16.0F, 15 / 16.0F, 15 / 16.0F, 15 / 16.0F);

MinecraftForge.setBlockHarvestLevel(this, "axe", 2);
}
Expand Down

0 comments on commit 5cb63c6

Please sign in to comment.