Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix CSM crash caused by move to C++11. (#6027)
  • Loading branch information
red-001 authored and nerzhul committed Jun 22, 2017
1 parent 2652d8d commit 8b9f40d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/script/lua_api/l_nodemeta.cpp
Expand Up @@ -176,7 +176,8 @@ NodeMetaRef::NodeMetaRef(v3s16 p, ServerEnvironment *env):
}

NodeMetaRef::NodeMetaRef(Metadata *meta):
m_meta(meta)
m_meta(meta),
m_is_local(true)
{
}

Expand Down

0 comments on commit 8b9f40d

Please sign in to comment.