Skip to content
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

A couple of crashes that I fixed #1

Open
VinnyStalck opened this issue Oct 24, 2024 · 0 comments
Open

A couple of crashes that I fixed #1

VinnyStalck opened this issue Oct 24, 2024 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@VinnyStalck
Copy link

1. Minecraft 1.21+ Crash - UUID too long

Crashed giving an error saying that the UUID was too long.

Fixed by removing the quotes in the client.uuid on gradle.properties file. Shouldn't cause any issues since it has no spaces (worked fine with other mc versions).

client.uuid=4b83b66f-fea2-41f7-ac3e-ed0f3d54fff2

2. Forge 1.21+ Crash - missing jopt-simple

Crashed giving a error saying that couldn't find jopt-simple

Fixed by adding the following to build.gradle.kts file:

configurations.configureEach {
    resolutionStrategy.force("net.sf.jopt-simple:jopt-simple:5.0.4")
}

You would probably add that to https://github.com/txnimc/Blahaj

3. Gradlew can't be executed (MacOS and Linux)

Fixed by adding the executable permission to gradlew file with the command chmod +x gradlew.

@VinnyStalck VinnyStalck added the bug Something isn't working label Oct 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants