Better Mods Button [Forge]

Better Mods Button [Forge]

17M Downloads

[Bug]: MineTogether mod button is being shifted in escape menu

Raidobw2 opened this issue ยท 1 comments

commented

Mod Loader (Required)

Forge

Minecraft Version (Required)

1.18.2

Mod Version (Required)

BetterModsButton-v3.2.3-1.18.2-Forge.jar

Notes (Required)

Button in top right is moved outside the screen:

image

I've reported this at CreeperHost/MineTogether#658 originally, it looks like

private void moveButtonsUpAndDown(List<GuiEventListener> listeners, int splitAt) {
for (GuiEventListener widget : listeners) {
// plain text button is only used for copyright text on title screen, really shouldn't accidentally remove that (again...)
if (widget instanceof Button button && !(button instanceof PlainTextButton))
if (splitAt <= button.y) {
button.y += 12;
} else {
button.y -= 12;
}
}
}
might be causing the issue by shifting all buttons up a few pixels?

Thanks in advance for checking it out!

P.S. Issue seems to be on 1.19+ too

latest.log (Optional)

N/A

commented

Fixed in latest versions.