fix(network): Adds UOG & Fixes ConnectUO packet (#552)
- [X] Adds UOG Extended and Compact (0xF1 0x51 packet) - [X] Fixes ConnectUO bad length
This commit is contained in:
parent
5e3b42bf9c
commit
c50322c0e3
25 changed files with 196 additions and 38 deletions
|
|
@ -478,7 +478,7 @@ namespace Server
|
|||
top = zBottom;
|
||||
}
|
||||
|
||||
avg = Math.Abs(zTop - zBottom) > Math.Abs(zLeft - zRight)
|
||||
avg = (zTop - zBottom).Abs() > (zLeft - zRight).Abs()
|
||||
? FloorAverage(zLeft, zRight)
|
||||
: FloorAverage(zTop, zBottom);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue