movement sync bug squashed

This commit is contained in:
2024-04-23 20:51:22 -05:00
parent 882ed17b3a
commit c16ea8f3dd
2 changed files with 2 additions and 67 deletions
+1 -1
View File
@@ -994,7 +994,7 @@ public abstract class AbstractCharacter extends AbstractWorldObject {
if (this.takeOffTime != 0)
return super.getLoc();
return super.getLoc().moveTowards(this.endLoc, this.getSpeed() * ((System.currentTimeMillis() - lastSetLocUpdate) * .001f));
return super.getLoc().moveTowards(this.endLoc, this.getSpeed() * ((System.currentTimeMillis() - this.lastSetLocUpdate) * .001f));
}