diff --git a/Server/src/main/core/game/world/update/flag/PlayerFlags530.kt b/Server/src/main/core/game/world/update/flag/PlayerFlags530.kt index b9135b782..49717e333 100644 --- a/Server/src/main/core/game/world/update/flag/PlayerFlags530.kt +++ b/Server/src/main/core/game/world/update/flag/PlayerFlags530.kt @@ -146,8 +146,8 @@ sealed class PlayerFlags530 (p: Int, o: Int, f: EntityFlag) : EFlagProvider (530 buffer.p1add (context.dest.getSceneX(l)) buffer.p1 (context.dest.getSceneY(l)) //arrival times (in client cycles) - buffer.ip2 (max(1, context.startArrive)) //# of client cycles to start location - buffer.ip2 (max(2, context.startArrive + context.destArrive)) //# of client cycles to end location + buffer.ip2 (context.startArrive) //# of client cycles to start location + buffer.ip2 (max(context.startArrive + 1, context.startArrive + context.destArrive)) //# of client cycles to end location buffer.p1neg (context.direction.toInteger()) //direction of movement } }