Skip to content

Commit

Permalink
Increase pulse length range for donation redstone block.
Browse files Browse the repository at this point in the history
  • Loading branch information
Corosauce committed Nov 1, 2023
1 parent 024b034 commit c57b6e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class DonationRedstoneBlockEntity extends DonationListenerBlockEntity {

private int countdown = 0;
private int pulseLengthIndex = 19;
private int pulseLengths[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 40, 60, 80, 100};
private int pulseLengths[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 40, 60, 80, 100, 120, 140, 160, 180, 200, 220, 240, 260, 280, 300, 320, 340, 360, 380, 400};

public DonationRedstoneBlockEntity(BlockEntityType<? extends DonationRedstoneBlockEntity> type, BlockPos pos, BlockState state) {
super(type, pos, state);
Expand Down

0 comments on commit c57b6e6

Please sign in to comment.