Skip to content

Commit

Permalink
Fix CME when serializing packs
Browse files Browse the repository at this point in the history
  • Loading branch information
senseiwells committed Nov 20, 2024
1 parent 0721725 commit e80acae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ repositories {
}

dependencies {
modImplementation("me.senseiwells:server-replay:1.2.3+1.21.3")
modImplementation("me.senseiwells:server-replay:1.2.4+1.21.3")
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ repositories {
}


val modVersion = "1.2.3"
val modVersion = "1.2.4"
val releaseVersion = "${modVersion}+mc${libs.versions.minecraft.get()}"
version = releaseVersion
group = "me.senseiwells"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,9 @@ abstract class ReplayRecorder(
null
}
}
this.packs[requestId] = packet.url
this.executor.execute {
this.packs[requestId] = packet.url
}
this.record(ClientboundResourcePackPushPacket(
packet.id,
"replay://${requestId}",
Expand Down

0 comments on commit e80acae

Please sign in to comment.