PlayerSAO saving fix (#4734)
authorNer'zhul <nerzhul@users.noreply.github.com>
Sat, 5 Nov 2016 09:25:30 +0000 (10:25 +0100)
committerGitHub <noreply@github.com>
Sat, 5 Nov 2016 09:25:30 +0000 (10:25 +0100)
commit66bb2954362748c4722d366d0df490ad51a591a2
treeafccdbd313686ab10e98c62729745e8252089bd6
parentb5c84c34ce283a56317902d24067d9a0795a44c5
PlayerSAO saving fix (#4734)

PlayerSAO::disconnected() function was historical and remove the link between SAO and RemotePlayer session. With previous attributes linked to RemotePlayer saving was working. But now attributes are read from SAO not RemotePlayer and the current serialize function verify SAO exists to save the player attributes.

Because PlayerSAO::disconnected marks playersao for removal, only mark playerSAO for removal and let PlayerSAO::removingFromEnvironment do the correct saving behaviour and all the disconnection process instead of doing a partial removal and let the server loop doing the RemotePlayer cleanup and remove some saved attributes...
src/content_sao.cpp
src/content_sao.h
src/remoteplayer.cpp
src/server.cpp