-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update for Fabric 0.15.10, fixes server crash for 1.19.2. #586
base: 1.19
Are you sure you want to change the base?
Conversation
Heyo, thanks for the fix for fabric 0.15.10! However, I'm getting a server crash with this version when opening a GUI Crashing when opening a gui from a machine (i.e., coal generator, solid infuser, etc..). Steps to Reproduce: Open coal generator, solid infuser, etc.. with a GUI Technical Information: Minecraft: 1.19.2 Crashlog: https://pastebin.com/raw/1ReurQnp |
Hello, yes LibGui fork is also required to completely fix the issue. |
Fix works! except crashes with the Modular Workbench Crash Report: https://pastebin.com/raw/ZLK8qr98 I saw pull request 583 fixes it, maybe see if merging the branches works? |
That fix is already applied, something else is going wrong and ill have to look into it |
Heyo, It would just happen when I right clicked the workbench. I'm using the FTB Legend of the Eyes modpack. I did add a couple other mods that only deal with worldgen (but nothing with GUIs, so I doubt they are the issue). Here's the crashlog for when I just did it again. https://pastebin.com/raw/Xh3M60z5 |
repositories {
maven {
url "https://maven.cafeteria.dev/releases"
credentials {
if (project.hasProperty("mcdUsername") && project.hasProperty("mcdPassword")) {
username = project.property("mcdUsername")
password = project.property("mcdPassword")
}
}
authentication {
basic(BasicAuthentication)
}
}
} You can use this to prevent the Gradle error about missing properties while keeping the ability for the owner to publish to that repository. |
Hey this should be fixed now, to be honest the mod needs some more serious work on it, but the crashes for modular bench and rancher are fixed now. |
No description provided.