Skip to content

Commit

Permalink
Dont make wooden brick form repairable (#789)
Browse files Browse the repository at this point in the history
  • Loading branch information
Caedis authored Jan 6, 2024
1 parent 8b1dfba commit b6f8e67
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/com/dreammaster/item/WoodenBrickForm.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ public boolean hasContainerItem() {
return true;
}

@Override
public boolean isRepairable() {
return false;
}

@Override
public ItemStack getContainerItem(ItemStack stack) {
ItemStack ret = stack.copy().splitStack(1);
Expand Down

0 comments on commit b6f8e67

Please sign in to comment.