Remove player save on quit, attempt to fix #2855

This commit is contained in:
Gabriele C. 2024-08-07 21:26:58 +02:00
parent 536af46b2b
commit c9624712da

View File

@ -27,7 +27,6 @@ public class ProcessSyncPlayerQuit implements SynchronousProcess {
commandManager.runCommandsOnLogout(player); commandManager.runCommandsOnLogout(player);
} else { } else {
limboService.restoreData(player); limboService.restoreData(player);
player.saveData(); // #1238: Speed is sometimes not restored properly
} }
player.leaveVehicle(); player.leaveVehicle();
} }