Skip to content

Commit

Permalink
1.21-pre4-1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticdrew committed Jun 8, 2024
1 parent 633407f commit bc1e8f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}
subprojects {
apply plugin: 'java'

apply plugin: 'maven-publish'
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
java.withSourcesJar()
java.withJavadocJar()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected <T> void registerPacket(PacketContainer<T> container)
ServerPlayNetworking.registerGlobalReceiver(container.getType(),
(ServerPlayNetworking.PlayPayloadHandler<CommonPacketWrapper<T>>) (payload, context) -> context.player().server.execute(() ->
container.handler().accept(
new PacketContext<>(context.player(), payload.packet(), side))));
new PacketContext<>(context.player(), payload.packet(), Side.SERVER))));

}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Project
version=1.0.9
version=1.0.10
group_id=mysticdrew

curseforge_project_id=806044
Expand Down

0 comments on commit bc1e8f5

Please sign in to comment.