mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-03-12 00:20:31 +00:00
changing three FLoat values for orientation into a Vector3; all tests updated
This commit is contained in:
parent
9095564e68
commit
e071f6ea56
5 changed files with 120 additions and 111 deletions
|
|
@ -180,9 +180,9 @@ class ObjectCreateDetailedMessageTest extends Specification {
|
|||
char.appearance.pos.coord.x mustEqual 3674.8438f
|
||||
char.appearance.pos.coord.y mustEqual 2726.789f
|
||||
char.appearance.pos.coord.z mustEqual 91.15625f
|
||||
char.appearance.pos.roll mustEqual 0
|
||||
char.appearance.pos.pitch mustEqual 0f
|
||||
char.appearance.pos.yaw mustEqual 36.5625f
|
||||
char.appearance.pos.orient.x mustEqual 0
|
||||
char.appearance.pos.orient.y mustEqual 0f
|
||||
char.appearance.pos.orient.z mustEqual 36.5625f
|
||||
char.appearance.basic_appearance.name mustEqual "IlllIIIlllIlIllIlllIllI"
|
||||
char.appearance.basic_appearance.faction mustEqual PlanetSideEmpire.VS
|
||||
char.appearance.basic_appearance.sex mustEqual CharacterGender.Female
|
||||
|
|
@ -367,8 +367,7 @@ class ObjectCreateDetailedMessageTest extends Specification {
|
|||
val app = CharacterAppearanceData(
|
||||
PlacementData(
|
||||
Vector3(3674.8438f, 2726.789f, 91.15625f),
|
||||
0,
|
||||
0f, 36.5625f
|
||||
Vector3(0f, 0f, 36.5625f)
|
||||
),
|
||||
BasicCharacterData(
|
||||
"IlllIIIlllIlIllIlllIllI",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue