Skip to content

Commit

Permalink
Disable seed and random buttons until BaseMod gets fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
daviscook477 committed Apr 20, 2018
1 parent c354c84 commit b94a759
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/customclimb/CustomClimb.java
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ public void update() {
System.out.println("seed was set to " + this.seed);
});
});
climbPanel.addUIElement(seedButton);
//climbPanel.addUIElement(seedButton);

// chaotic random button
ModButton chaoticRandomButton = new ModButton(
Expand All @@ -572,7 +572,7 @@ public void update() {
randomizeMods(modAmount, false);
});
});
climbPanel.addUIElement(chaoticRandomButton);
//climbPanel.addUIElement(chaoticRandomButton);

// balanced random button
ModButton balancedRandomButton = new ModButton(
Expand All @@ -586,7 +586,7 @@ public void update() {
randomizeMods(modAmount, true);
});
});
climbPanel.addUIElement(balancedRandomButton);
//climbPanel.addUIElement(balancedRandomButton);

// register mod badge
BaseMod.registerModBadge(badgeTexture, MODNAME, AUTHOR, DESCRIPTION, climbPanel);
Expand Down

0 comments on commit b94a759

Please sign in to comment.