mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-03-25 06:49:07 +00:00
changed last field to boolean
This commit is contained in:
parent
5564d98395
commit
b444b4b503
2 changed files with 4 additions and 4 deletions
|
|
@ -13,7 +13,7 @@ import scodec.codecs._
|
|||
*/
|
||||
final case class FriendsResponse(player_guid : PlanetSideGUID,
|
||||
friend : String,
|
||||
unk : Int)
|
||||
unk : Boolean)
|
||||
extends PlanetSideGamePacket {
|
||||
type Packet = FriendsResponse
|
||||
def opcode = GamePacketOpcode.FriendsResponse
|
||||
|
|
@ -24,6 +24,6 @@ object FriendsReponse extends Marshallable[FriendsResponse] {
|
|||
implicit val codec : Codec[FriendsResponse] = (
|
||||
("player_guid" | PlanetSideGUID.codec) ::
|
||||
("friend" | PacketHelpers.specSizeWideStringAligned(uint(5), 3)) ::
|
||||
("unk" | uint8L)
|
||||
("unk" | bool)
|
||||
).as[FriendsResponse]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue