Fixed: #864 Server crash on character create when compile on win without stlport

hg/feature/sound
kaetemi@users.sourceforge.net 15 years ago
parent ec2b298506
commit a4457c5778

@ -321,7 +321,8 @@ static void prepareCharacterPositionForStore ( COfflineEntityState & state, cons
H_AUTO(CCharacterStore);\
CFameManager::getInstance().savePlayerFame(_Id, const_cast<EGSPD::CFameContainerPD &>(*_Fames));\
/* Update the current playing session duration */ \
_LastLogStats.begin()->Duration = CTime::getSecondsSince1970() - _LastLogStats.begin()->LoginTime;\
if (_LastLogStats.size() > 0) _LastLogStats.begin()->Duration = CTime::getSecondsSince1970() - _LastLogStats.begin()->LoginTime; \
else nlwarning("Cannot update play session duration, _LastLogStats is empty, new character?"); \
\
/* Unless the top of the position stack is locked, */ \
/* update the stored position stack with the current position */ \

Loading…
Cancel
Save