Remove debug code

This commit is contained in:
Camotoy 2021-08-31 19:52:10 -04:00
parent b89cc1aef0
commit 7fe7dc1d70
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 0 additions and 4 deletions

View File

@ -41,13 +41,11 @@ public class BedrockPositionTrackingDBClientRequestTranslator extends PacketTran
@Override
public void translate(GeyserSession session, PositionTrackingDBClientRequestPacket packet) {
System.out.println(packet.toString());
PositionTrackingDBServerBroadcastPacket broadcastPacket = new PositionTrackingDBServerBroadcastPacket();
broadcastPacket.setTrackingId(packet.getTrackingId());
// Fetch the stored lodestone
LodestoneCache.LodestonePos pos = session.getLodestoneCache().getPos(packet.getTrackingId());
System.out.println(pos);
// If we don't have data for that ID tell the client its not found
if (pos == null) {
@ -70,8 +68,6 @@ public class BedrockPositionTrackingDBClientRequestTranslator extends PacketTran
builder.putList("pos", NbtType.INT, pos.getX(), pos.getY(), pos.getZ());
broadcastPacket.setTag(builder.build());
System.out.println(broadcastPacket);
session.sendUpstreamPacket(broadcastPacket);
}
}