Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
NeRdTheNed committed Oct 1, 2023
1 parent e0576f7 commit c5b1c34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/iDiamondhunter/morebows/CustomBow.java
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public void onPlayerStoppedUsing(ItemStack stack, World world, EntityPlayer play

// Create the arrows to fire
if (multiShot) { // Bows that shoot multiple arrows
final int pickupStatus = (MoreBows.useAmmoForShotArrows) && !infiniteArrows ? 1 : 2;
final int pickupStatus = MoreBows.useAmmoForShotArrows && !infiniteArrows ? 1 : 2;

if (bowType == ARROW_TYPE_ENDER) { // Ender bow
arrs = new EntityArrow[shotArrows];
Expand Down

0 comments on commit c5b1c34

Please sign in to comment.