Skip to content

Commit

Permalink
1.21.4 version
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasabbe committed Nov 13, 2024
1 parent f1f7337 commit 1f2d58d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.21.3
yarn_mappings=1.21.3+build.2
minecraft_version=24w46a
yarn_mappings=24w46a+build.4
loader_version=0.16.9
# Mod Properties
mod_version=1.8+1.21.3
mod_version=1.8+1.21.4-SNAPSHOT.2
maven_group=me.lukasabbe
archives_base_name=Bookshelfinspector

# Dependencies
fabric_version=0.107.3+1.21.3
fabric_version=0.108.1+1.21.4
cloth_config=16.0.141
modmenu=12.0.0-beta.1
YAML_snake=2.2
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public record ModCheckPayload(boolean modActivated) implements CustomPayload {
public static final CustomPayload.Id<ModCheckPayload> ID = new CustomPayload.Id<>(BookShelfInspectorNetworkConstants.MOD_CHECK_PACKET_ID);

public static final PacketCodec<RegistryByteBuf, ModCheckPayload> CODEC = PacketCodec.tuple(
PacketCodecs.BOOL, ModCheckPayload::modActivated,
PacketCodecs.BOOLEAN, ModCheckPayload::modActivated,
ModCheckPayload::new
);

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 @@ -25,7 +25,7 @@
],
"depends": {
"fabricloader": ">=${loader_version}",
"minecraft": ">=1.21.3",
"minecraft": ">=1.21.4-alpha.24.46.a",
"fabric-api-base": "*",
"fabric-networking-api-v1": "*",
"fabric-lifecycle-events-v1": "*",
Expand Down

0 comments on commit 1f2d58d

Please sign in to comment.