Parse dungeon entry info req from payload instead of player scene (#2122)

This commit is contained in:
Moistcrafter
2023-04-16 22:08:08 -07:00
committed by GitHub
parent b302c2b73b
commit abcabc9861
2 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ public class HandlerDungeonEntryInfoReq extends PacketHandler {
public void handle(GameSession session, byte[] header, byte[] payload) throws Exception {
DungeonEntryInfoReq req = DungeonEntryInfoReq.parseFrom(payload);
session.getServer().getDungeonSystem().getEntryInfo(session.getPlayer(), req.getPointId());
session.getServer().getDungeonSystem().getEntryInfo(session.getPlayer(), req.getPointId(), req.getSceneId());
}
}