Skip to content

Commit

Permalink
v1.7.7 - Fix F3+ESC crash (Courtesy of UpcraftLP in #61) [Closes #61]
Browse files Browse the repository at this point in the history
  • Loading branch information
Prospector committed Aug 10, 2019
1 parent 72b391d commit 6582c76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.jvmargs=-Xmx1G

mod_version=1.7.6
mod_version=1.7.7
maven_group=io.github.prospector
archive_name=modmenu

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public MixinGameMenuScreen(Text title) {
super(title);
}

@Inject(at = @At("RETURN"), method = "init()V")
@Inject(at = @At("RETURN"), method = "initWidgets()V")
public void drawMenuButton(CallbackInfo info) {
addButton(new ModMenuButtonWidget(this.width / 2 - 102, this.height / 4 + 8 + 24 * 3, 204, 20, I18n.translate("modmenu.title") + " " + I18n.translate("modmenu.loaded", ModMenu.getFormattedModCount()), this), 5);
}
Expand Down

0 comments on commit 6582c76

Please sign in to comment.