Skip to content

Commit

Permalink
Merge branch '1.21.4' into 1.21.3
Browse files Browse the repository at this point in the history
# Conflicts:
#	README.md
#	build.gradle.kts
  • Loading branch information
senseiwells committed Dec 21, 2024
2 parents 4e276c2 + 0f6a6fb commit e702aee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 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.4+1.21.3")
modImplementation("me.senseiwells:server-replay:1.2.8+1.21.3")
}
```

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


val modVersion = "1.2.7"
val modVersion = "1.2.8"
val releaseVersion = "${modVersion}+mc${libs.versions.minecraft.get()}"
version = releaseVersion
group = "me.senseiwells"
Expand Down Expand Up @@ -119,7 +119,7 @@ tasks {
file = remapJar.get().archiveFile
changelog.set(
"""
- Added `"ignore_action_bar_packets"` option
- Fix a compatability issue with polymer
""".trimIndent()
)
type = STABLE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;

@Mixin(ServerCommonPacketListenerImpl.class)
// We want to apply our #send mixin *LAST*, any
// other mods which modify the packs should come first
@Mixin(value = ServerCommonPacketListenerImpl.class, priority = 5000)
public abstract class ServerCommonPacketListenerImplMixin {
@Shadow protected abstract GameProfile playerProfile();

Expand Down

0 comments on commit e702aee

Please sign in to comment.