Forgot to remove print line

This commit is contained in:
lukasabbe
2026-01-20 23:57:18 +01:00
parent f28446e20b
commit da3b87b485
3 changed files with 0 additions and 10 deletions
@@ -27,7 +27,6 @@ public class Notenoughpages implements ModInitializer {
if(IsContentCorrectLength(content, textField)) return; if(IsContentCorrectLength(content, textField)) return;
while(true){ while(true){
System.out.println(((BookEditScreenAccessor) bookEditScreen).getPagesAmount());
if(((BookEditScreenAccessor) bookEditScreen).getPagesAmount() == 99){ if(((BookEditScreenAccessor) bookEditScreen).getPagesAmount() == 99){
return; return;
} }
@@ -1,8 +0,0 @@
package com.lukasabbe.notenoughpages.mixin;
import net.minecraft.client.gui.screens.inventory.BookEditScreen;
import org.spongepowered.asm.mixin.Mixin;
@Mixin(BookEditScreen.class)
public class BookEditScreenMixin {
}
@@ -8,7 +8,6 @@
], ],
"client": [ "client": [
"BookEditScreenAccessor", "BookEditScreenAccessor",
"BookEditScreenMixin",
"MultiLineEditBoxAccessor", "MultiLineEditBoxAccessor",
"MultilineTextFieldMixin" "MultilineTextFieldMixin"
], ],