Skip to content

Commit

Permalink
update to owo 0.12.10 and 1.21 proper, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gliscowo committed Jun 15, 2024
1 parent 4792608 commit 652b3ca
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_base_version=1.21
minecraft_version=1.21-pre4
yarn_mappings=1.21-pre4+build.3
minecraft_version=1.21
yarn_mappings=1.21+build.2
loader_version=0.15.11

# Mod Properties
mod_version = 0.1.9-pre.1
mod_version = 0.1.10
maven_group = io.wispforest
archives_base_name = lavender

# Dependencies
# check this on https://fabricmc.net/develop
fabric_version=0.100.0+1.21
fabric_version=0.100.1+1.21

# https://maven.shedaniel.me/me/shedaniel/RoughlyEnoughItems-fabric/
rei_version=15.0.728

# https://maven.wispforest.io/io/wispforest/owo-lib/
owo_version=0.12.8-alpha.7+1.21
owo_version=0.12.10+1.21

# https://maven.terraformersmc.com/releases/com/terraformersmc/modmenu
modmenu_version=11.0.0-beta.1
modmenu_version=11.0.0-rc.2

# https://maven.wispforest.io/io/wispforest/lavender-md/core/
lavender_md_version=0.1.1+1.21
2 changes: 1 addition & 1 deletion src/main/java/io/wispforest/lavender/Lavender.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void onInitialize() {

CommandRegistrationCallback.EVENT.register(LavenderCommands::register);

PayloadTypeRegistry.playS2C().register(WorldUUIDPayload.ID, CodecUtils.packetCodec(WorldUUIDPayload.ENDEC));
PayloadTypeRegistry.playS2C().register(WorldUUIDPayload.ID, CodecUtils.toPacketCodec(WorldUUIDPayload.ENDEC));

ServerPlayConnectionEvents.JOIN.register((handler, sender, server) -> {
sender.sendPacket(new WorldUUIDPayload(server.getOverworld().getPersistentStateManager().getOrCreate(WorldUUIDState.TYPE, "lavender_world_id").id));
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
"depends": {
"fabricloader": ">=0.15.0",
"fabric": "*",
"minecraft": ">=1.20.3",
"owo-lib": ">=0.12.0",
"lavender-md": ">=0.1.0",
"minecraft": ">=1.21",
"owo-lib": ">=0.12.10",
"lavender-md": ">=0.1.1",
"lavender-md-owo-ui": "*"
}
}

0 comments on commit 652b3ca

Please sign in to comment.