Skip to content

Commit

Permalink
fix packet sending issue to player
Browse files Browse the repository at this point in the history
  • Loading branch information
hakan-krgn committed Oct 18, 2023
1 parent dcfc1a8 commit 19bd1eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void send(@Nonnull Object... packets) {
if (!super.player.isOnline())
return;
for (Object packet : packets)
this.connection.a((Packet<?>) packet);
this.connection.b((Packet<?>) packet);
}

/**
Expand Down

0 comments on commit 19bd1eb

Please sign in to comment.