Fix CSM crash caused by move to C++11. (#6027)

This commit is contained in:
red-001 2017-06-22 12:18:58 +01:00 committed by Loïc Blot
parent 2652d8db19
commit 8b9f40d12f
1 changed files with 2 additions and 1 deletions

View File

@ -176,7 +176,8 @@ NodeMetaRef::NodeMetaRef(v3s16 p, ServerEnvironment *env):
}
NodeMetaRef::NodeMetaRef(Metadata *meta):
m_meta(meta)
m_meta(meta),
m_is_local(true)
{
}