Bring back dungeon drops.

This commit is contained in:
GanyusLeftHorn
2022-06-21 12:32:17 -07:00
committed by Melledy
parent e9b3516854
commit f42334411b
13 changed files with 4396 additions and 30 deletions

View File

@@ -13,7 +13,7 @@ public class HandlerGadgetInteractReq extends PacketHandler {
public void handle(GameSession session, byte[] header, byte[] payload) throws Exception {
GadgetInteractReq req = GadgetInteractReq.parseFrom(payload);
session.getPlayer().interactWith(req.getGadgetEntityId(), req.getOpType());
session.getPlayer().interactWith(req.getGadgetEntityId(), req);
}
}