-
Notifications
You must be signed in to change notification settings - Fork 2
fix: 1.21.9 player api changes #11
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,18 @@ | ||
| # Done to increase the memory available to gradle. | ||
| # Done to increase the memory available to Gradle. | ||
| org.gradle.jvmargs=-Xmx1G | ||
| org.gradle.parallel=true | ||
|
|
||
| # Fabric Properties | ||
| # check these on https://fabricmc.net/develop | ||
| minecraft_version=1.21 | ||
| yarn_mappings=1.21+build.9 | ||
| loader_version=0.16.0 | ||
| minecraft_version=1.21.9 | ||
| yarn_mappings=1.21.9+build.1 | ||
| loader_version=0.18.4 | ||
| loom_version=1.14-SNAPSHOT | ||
|
|
||
|
|
||
| # Mod Properties | ||
| mod_version=1.0.1+1.21 | ||
| mod_version=1.0.2+1.21.9 | ||
| maven_group=me.imgalvin.playerfinder | ||
| archives_base_name=player-finder | ||
|
|
||
| # Dependencies | ||
| fabric_version=0.102.0+1.21 | ||
| fabric_version=0.134.1+1.21.9 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -21,8 +21,8 @@ | |||||
| }, | ||||||
| "depends": { | ||||||
| "fabricloader": ">=0.16.0", | ||||||
|
||||||
| "fabricloader": ">=0.16.0", | |
| "fabricloader": ">=0.18.4", |
Copilot
AI
Dec 30, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Minecraft version constraint is now an exact version match ("1.21.9") rather than a version range. While the README mentions this is intentional to prevent crashes, this means the mod will not work with 1.21.10 or any future patch versions without an update. Consider using a tilde constraint like "~1.21.9" to allow compatible patch versions (e.g., 1.21.10, 1.21.11), or if breaking changes are expected in every patch version, consider documenting why this strict versioning is necessary.
| "minecraft": "1.21.9", | |
| "minecraft": "~1.21.9", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation mentions "AutoTorcher" instead of the correct mod name "PlayerFinder". This appears to be copied from another project.