Skip to content

Commit

Permalink
Merge branch 'hannibal002:beta' into item-stack-size-mining
Browse files Browse the repository at this point in the history
  • Loading branch information
RayDeeUx authored Dec 7, 2023
2 parents 595bccb + 993253d commit cee6bd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ You can write in the description of the pr the wording for the changelog as well
- Don't forget to add `@FeatureToggle` to new standalone features (not options to that feature) in the config.
- Do not use `e.printStackTrace()`, use `CopyErrorCommand.logError(e, "explanation for users")` instead.
- Do not use `MinecraftForge.EVENT_BUS.post(event)`, use `event.postAndCatch()` instead.
- Do not use `toRegex()`, use `toPattern()` instead.
- Please use Regex instead of String comparison when it is likely Hypixel will change the message in the future.

## Software Used in SkyHanni

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/SkyHanniInstallerFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ public void mouseClicked(MouseEvent e) {
if (e.getSource() == getForgeTextArea()) {
try {
Desktop.getDesktop().browse(new URI(
"http://files.minecraftforge.net/maven/net/minecraftforge/forge/index_1.8.9.html"));
"https://files.minecraftforge.net/maven/net/minecraftforge/forge/index_1.8.9.html"));
} catch (IOException | URISyntaxException ex) {
showErrorPopup(ex);
}
Expand Down

0 comments on commit cee6bd8

Please sign in to comment.