Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ org.gradle.parallel=true
# Fabric Properties
# check these on https://fabricmc.net/develop

minecraft_version=26.1-snapshot-6
minecraft_version=26.1
Copy link

Copilot AI Mar 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minecraft_version was bumped to 26.1, but the mod manifest still declares a dependency on minecraft: 26.1-alpha.6 (see src/main/resources/fabric.mod.json). This mismatch can prevent the mod from loading on the intended target version; update the manifest constraint (or template it from gradle.properties) so it matches the new Minecraft version metadata.

Suggested change
minecraft_version=26.1
minecraft_version=26.1-alpha.6

Copilot uses AI. Check for mistakes.
loader_version=0.18.4
loom_version=1.15-SNAPSHOT

# Mod Properties
mod_version=1.0.1-beta+26.1-snapshots_fabric
mod_version=1.0.1-beta+26.1
maven_group=me.imgalvin
archives_base_name=auto-lan

# Dependencies
fabric_api_version=0.143.2+26.1
fabric_api_version=0.144.0+26.1
4 changes: 2 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
},
"depends": {
"fabricloader": ">=0.16",
"minecraft": "26.1-alpha.6",
"minecraft": "26.1",
"java": ">=25",
"fabric-api": "*"
},
"mixins": [
"autolan.client.mixins.json"
]
}
}
Loading