Skip to content

Commit

Permalink
Clarify what to remove when 1.20.60 support is dropped
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Castle <[email protected]>
  • Loading branch information
Kas-tle committed Mar 11, 2024
1 parent 286106f commit 6bded93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
@Translator(packet = ItemFrameDropItemPacket.class)
public class BedrockItemFrameDropItemTranslator extends PacketTranslator<ItemFrameDropItemPacket> {

// TODO: Remove when <= 1.20.60 is no longer supported
// TODO: Remove when 1.20.60 is no longer supported
@Override
public void translate(GeyserSession session, ItemFrameDropItemPacket packet) {
Entity entity = ItemFrameEntity.getItemFrameEntity(session, packet.getBlockPosition());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class BedrockLecternUpdateTranslator extends PacketTranslator<LecternUpda

@Override
public void translate(GeyserSession session, LecternUpdatePacket packet) {
// TODO: Remove dropping book check here when <= 1.20.60 is no longer supported
// TODO: Remove dropping book check here when 1.20.60 is no longer supported
if (packet.isDroppingBook()) {
// Bedrock drops the book outside of the GUI. Java drops it in the GUI
// So, we enter the GUI and then drop it! :)
Expand Down

0 comments on commit 6bded93

Please sign in to comment.