Fix for Festa Rewards and House Visit MHF-F5

Partial Fix for Forward 5
This commit is contained in:
Samboge
2023-09-27 07:12:27 +07:00
parent 4bf8dc32eb
commit 2027238250
3 changed files with 63 additions and 11 deletions

View File

@@ -119,7 +119,10 @@ func handleMsgMhfEnumerateHouse(s *Session, p mhfpacket.MHFPacket) {
bf.WriteUint8(0)
}
bf.WriteUint16(house.HRP)
bf.WriteUint16(house.GR)
//to skip GR for client below G1
if _config.ErupeConfig.RealClientMode >= _config.G1{
bf.WriteUint16(house.GR)
}
ps.Uint8(bf, house.Name, true)
}
bf.Seek(0, 0)