Modernization Fixes & Updates to Default Values (#3)
This commit is contained in:
parent
445eddff68
commit
dcf64091b1
768 changed files with 10507 additions and 14196 deletions
|
|
@ -1376,11 +1376,9 @@ namespace Server.Multis
|
|||
{
|
||||
Point2D dest = MapItem.Pins[NextNavPoint];
|
||||
|
||||
int x, y;
|
||||
MapItem.ConvertToWorld(dest.X, dest.Y, out x, out y);
|
||||
MapItem.ConvertToWorld(dest.X, dest.Y, out int x, out int y);
|
||||
|
||||
int maxSpeed;
|
||||
dir = GetMovementFor(x, y, out maxSpeed);
|
||||
dir = GetMovementFor(x, y, out int maxSpeed);
|
||||
|
||||
if (maxSpeed == 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue