mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-02-23 08:33:36 +00:00
modifying packet for previously unhandled fields (all)
This commit is contained in:
parent
c392b1c500
commit
aee720ae84
3 changed files with 15 additions and 7 deletions
|
|
@ -1878,7 +1878,7 @@ class GamePacketTest extends Specification {
|
|||
force_dome_active : Boolean,
|
||||
lattice_benefit : Int,
|
||||
unk3 : Int,
|
||||
unk4 : Int,
|
||||
unk4 : List[Additional2],
|
||||
unk5 : Long,
|
||||
unk6 : Boolean,
|
||||
unk7 : Int,
|
||||
|
|
@ -1899,7 +1899,8 @@ class GamePacketTest extends Specification {
|
|||
force_dome_active mustEqual false
|
||||
lattice_benefit mustEqual 28
|
||||
unk3 mustEqual 0
|
||||
unk4 mustEqual 0
|
||||
unk4.size mustEqual 0
|
||||
unk4.isEmpty mustEqual true
|
||||
unk5 mustEqual 0
|
||||
unk6 mustEqual false
|
||||
unk7 mustEqual 8
|
||||
|
|
@ -1926,7 +1927,7 @@ class GamePacketTest extends Specification {
|
|||
false,
|
||||
28,
|
||||
0,
|
||||
0,
|
||||
Nil,
|
||||
0,
|
||||
false,
|
||||
8,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue