mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix Server triggering wrong errors if environment init fails
This commit is contained in:
parent
4f9ccd89b3
commit
650168cada
2 changed files with 8 additions and 0 deletions
|
@ -624,6 +624,9 @@ PlayerSAO *ServerEnvironment::loadPlayer(RemotePlayer *player, bool *new_player,
|
|||
|
||||
void ServerEnvironment::saveMeta()
|
||||
{
|
||||
if (!m_meta_loaded)
|
||||
return;
|
||||
|
||||
std::string path = m_path_world + DIR_DELIM "env_meta.txt";
|
||||
|
||||
// Open file and serialize
|
||||
|
@ -650,6 +653,9 @@ void ServerEnvironment::saveMeta()
|
|||
|
||||
void ServerEnvironment::loadMeta()
|
||||
{
|
||||
SANITY_CHECK(!m_meta_loaded);
|
||||
m_meta_loaded = true;
|
||||
|
||||
// If file doesn't exist, load default environment metadata
|
||||
if (!fs::PathExists(m_path_world + DIR_DELIM "env_meta.txt")) {
|
||||
infostream << "ServerEnvironment: Loading default environment metadata"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue