Skip to content

A couple of crashes that I fixed #1

@VinnyStalck

Description

@VinnyStalck

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.

Metadata

Metadata

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions