Changing how banners work

This commit is contained in:
Няшик Няшный
2022-05-19 12:40:05 +03:00
committed by Melledy
parent eb54dcec0e
commit 1662278586
4 changed files with 8 additions and 8 deletions

View File

@@ -12,6 +12,6 @@ public class HandlerDoGachaReq extends PacketHandler {
public void handle(GameSession session, byte[] header, byte[] payload) throws Exception {
DoGachaReq req = DoGachaReq.parseFrom(payload);
session.getServer().getGachaManager().doPulls(session.getPlayer(), req.getGachaType(), req.getGachaTimes());
session.getServer().getGachaManager().doPulls(session.getPlayer(), req.getGachaScheduleId(), req.getGachaTimes());
}
}