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
|
|
@ -132,7 +132,7 @@ namespace Server.Items
|
|||
percent = v;
|
||||
}
|
||||
|
||||
percent *= 10000 + 10000 / (Math.Abs(high - low) + 1);
|
||||
percent *= 10000 + 10000 / ((high - low).Abs() + 1);
|
||||
|
||||
return low + (high - low) * percent / 1000001;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue