Skip to content

Commit

Permalink
Raise Fare Saver GUI limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenny-Hui committed Feb 18, 2024
1 parent a1f7fd0 commit 60c0392
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class FareSaverScreen extends BlockConfigScreen {
private final NumericTextField discountTextField;
public FareSaverScreen(BlockPos blockPos, int discount) {
super(blockPos);
this.discountTextField = new NumericTextField(0, 0, 60, 20, 0, 100000, 2, TextUtil.translatable(TextCategory.GUI, "faresaver.currency"));
this.discountTextField = new NumericTextField(0, 0, 60, 20, 0, 1000000, 2, TextUtil.translatable(TextCategory.GUI, "faresaver.currency"));
this.discountTextField.setValue(discount);
}

Expand Down

0 comments on commit 60c0392

Please sign in to comment.