Skip to content

Commit

Permalink
Fixed issue Fabric API
Browse files Browse the repository at this point in the history
*Fixed a dumb mistake I made by missing ">=" for versions of Fabric API, causing Data Attributes to not be compatible with anything other than 0.40.1+1.17
  • Loading branch information
CleverNucleus committed Oct 8, 2021
1 parent cf84a11 commit 4c44df1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.11.6

# Mod Properties
mod_version = 1.0.5
mod_version = 1.0.6
maven_group = com.github.clevernucleus
archives_base_name = dataattributes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public final class DataAttributes implements ModInitializer {
public static final LoaderJsonManager MANAGER = new LoaderJsonManager();
public static final Identifier SYNC = new Identifier(API.MODID, "sync");
/** Manual; ugh, I know. */
public static final String VERSION = "1.0.5";
public static final String VERSION = "1.0.6";

private static void loginQueryStart(ServerLoginNetworkHandler handler, MinecraftServer server, PacketSender sender, ServerLoginNetworking.LoginSynchronizer synchronizer) {
PacketByteBuf buf = PacketByteBufs.create();
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

"depends": {
"fabricloader": ">=0.11.3",
"fabric": "0.40.1",
"fabric": ">=0.40.1",
"minecraft": "1.17.x",
"java": ">=16"
}
Expand Down

0 comments on commit 4c44df1

Please sign in to comment.