Skip to content

Commit

Permalink
Add client tick end to list of handled packets
Browse files Browse the repository at this point in the history
  • Loading branch information
Tides committed Jan 1, 2025
1 parent 0dd576d commit ac06fe0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
1 change: 1 addition & 0 deletions Obsidian/Net/ClientHandlers/PlayClientHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ internal sealed class PlayClientHandler : ClientHandler
{ 38, new PlayerAbilitiesPacket() },
{ 60, new UseItemOnPacket() },
{ 61, new UseItemPacket() },
{ 11, new ClientTickEndPacket() }
}.ToFrozenDictionary();

public async override ValueTask<bool> HandleAsync(PacketData packetData)
Expand Down
9 changes: 3 additions & 6 deletions Obsidian/Net/Packets/Play/Serverbound/ClientTickEndPacket.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
namespace Obsidian.Net.Packets.Play.Serverbound;
using Obsidian.Entities;

namespace Obsidian.Net.Packets.Play.Serverbound;
public partial class ClientTickEndPacket
{

public override void Populate(INetStreamReader reader)
{

}
}

0 comments on commit ac06fe0

Please sign in to comment.