Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
l_mapgen.cpp: Fix LINT broken since b1b40fe
  • Loading branch information
SmallJoker committed May 21, 2019
1 parent 12e3d3d commit cfef466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script/lua_api/l_mapgen.cpp
Expand Up @@ -410,7 +410,7 @@ Biome *read_biome_def(lua_State *L, int index, const NodeDefManager *ndef)
// If no cave liquids defined, set list to "ignore" to trigger old hardcoded
// cave liquid behaviour.
if (nnames == 0) {
nn.push_back("ignore");
nn.emplace_back("ignore");
nnames = 1;
}
b->m_nnlistsizes.push_back(nnames);
Expand Down

0 comments on commit cfef466

Please sign in to comment.