forked from Mirrorlandia_minetest/minetest
Fix on_successful_save -> onSuccessfulSave
This commit is contained in:
parent
c1d7dbfc38
commit
4a7c97c5f6
@ -106,7 +106,7 @@ void PlayerDatabaseFiles::savePlayer(RemotePlayer *player)
|
|||||||
infostream << "Failed to write " << path << std::endl;
|
infostream << "Failed to write " << path << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
player->on_successful_save();
|
player->onSuccessfulSave();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PlayerDatabaseFiles::removePlayer(const std::string &name)
|
bool PlayerDatabaseFiles::removePlayer(const std::string &name)
|
||||||
|
@ -529,7 +529,7 @@ void PlayerDatabasePostgreSQL::savePlayer(RemotePlayer *player)
|
|||||||
}
|
}
|
||||||
endSave();
|
endSave();
|
||||||
|
|
||||||
player->on_successful_save();
|
player->onSuccessfulSave();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PlayerDatabasePostgreSQL::loadPlayer(RemotePlayer *player, PlayerSAO *sao)
|
bool PlayerDatabasePostgreSQL::loadPlayer(RemotePlayer *player, PlayerSAO *sao)
|
||||||
|
@ -531,7 +531,7 @@ void PlayerDatabaseSQLite3::savePlayer(RemotePlayer *player)
|
|||||||
|
|
||||||
endSave();
|
endSave();
|
||||||
|
|
||||||
player->on_successful_save();
|
player->onSuccessfulSave();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PlayerDatabaseSQLite3::loadPlayer(RemotePlayer *player, PlayerSAO *sao)
|
bool PlayerDatabaseSQLite3::loadPlayer(RemotePlayer *player, PlayerSAO *sao)
|
||||||
|
@ -224,7 +224,7 @@ const RemotePlayerChatResult RemotePlayer::canSendChatMessage()
|
|||||||
return RPLAYER_CHATRESULT_OK;
|
return RPLAYER_CHATRESULT_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
void RemotePlayer::on_successful_save()
|
void RemotePlayer::onSuccessfulSave()
|
||||||
{
|
{
|
||||||
setModified(false);
|
setModified(false);
|
||||||
if (m_sao)
|
if (m_sao)
|
||||||
|
@ -139,7 +139,7 @@ public:
|
|||||||
|
|
||||||
void setPeerId(session_t peer_id) { m_peer_id = peer_id; }
|
void setPeerId(session_t peer_id) { m_peer_id = peer_id; }
|
||||||
|
|
||||||
void on_successful_save();
|
void onSuccessfulSave();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user