Skip to content

Commit 90bb8c2

Browse files
authored
Mark MC-61489 fix as incompatible with Scribble (#493)
1 parent 6d81a47 commit 90bb8c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/client/java/dev/isxander/debugify/client/mixins/basic/mc61489/BookEditScreenMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.spongepowered.asm.mixin.injection.ModifyArg;
1313

1414
// Compared to the original patch, we use / 3 here since it seems to line up better. Else, in a windowed screen the Done button appears at the very bottom / slightly off-screen.
15-
@BugFix(id = "MC-61489", category = FixCategory.BASIC, env = BugFix.Env.CLIENT, modConflicts = "fixbookgui", description = "Book GUI is not vertically centered")
15+
@BugFix(id = "MC-61489", category = FixCategory.BASIC, env = BugFix.Env.CLIENT, modConflicts = {"fixbookgui", "scribble"}, description = "Book GUI is not vertically centered")
1616
@Mixin(BookEditScreen.class)
1717
public class BookEditScreenMixin extends Screen {
1818
@Shadow

src/client/java/dev/isxander/debugify/client/mixins/basic/mc61489/BookViewScreenMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import org.spongepowered.asm.mixin.injection.ModifyArg;
1616

1717
// Compared to the original patch, we use / 3 here since it seems to line up better. Else, in a windowed screen the Done button appears at the very bottom / slightly off-screen.
18-
@BugFix(id = "MC-61489", category = FixCategory.BASIC, env = BugFix.Env.CLIENT, modConflicts = "fixbookgui", description = "Book GUI is not vertically centered")
18+
@BugFix(id = "MC-61489", category = FixCategory.BASIC, env = BugFix.Env.CLIENT, modConflicts = {"fixbookgui", "scribble"}, description = "Book GUI is not vertically centered")
1919
@Mixin(BookViewScreen.class)
2020
public class BookViewScreenMixin extends Screen {
2121
@Shadow

src/client/java/dev/isxander/debugify/client/mixins/basic/mc61489/LecternScreenMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import org.spongepowered.asm.mixin.injection.ModifyArg;
1010

1111
// Compared to the original patch, we use / 3 here since it seems to line up better. Else, in a windowed screen the Done button appears at the very bottom / slightly off-screen.
12-
@BugFix(id = "MC-61489", category = FixCategory.BASIC, env = BugFix.Env.CLIENT, modConflicts = "fixbookgui", description = "Book GUI is not vertically centered")
12+
@BugFix(id = "MC-61489", category = FixCategory.BASIC, env = BugFix.Env.CLIENT, modConflicts = {"fixbookgui", "scribble"}, description = "Book GUI is not vertically centered")
1313
@Mixin(LecternScreen.class)
1414
public class LecternScreenMixin extends BookViewScreen {
1515
@ModifyArg(method = "createMenuControls", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/gui/components/Button$Builder;bounds(IIII)Lnet/minecraft/client/gui/components/Button$Builder;"), index = 1)

0 commit comments

Comments
 (0)