chars, ...

This commit is contained in:
Sen 2025-04-06 00:12:39 +02:00
parent eea23233f4
commit 3515fb1792
53 changed files with 688 additions and 543 deletions

View file

@ -151,4 +151,8 @@ public class ItemBow extends Item
public ModelBlock getModel(String name, int meta) {
return new ModelBlock(this.getTransform(), meta == 0 ? "bow" : ("bow_pulling_" + (meta - 1)));
}
public boolean canBeWielded() {
return true;
}
}