mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +01:00
l_mapgen.cpp: Fix LINT broken since b1b40fe
This commit is contained in:
@ -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
|
// If no cave liquids defined, set list to "ignore" to trigger old hardcoded
|
||||||
// cave liquid behaviour.
|
// cave liquid behaviour.
|
||||||
if (nnames == 0) {
|
if (nnames == 0) {
|
||||||
nn.push_back("ignore");
|
nn.emplace_back("ignore");
|
||||||
nnames = 1;
|
nnames = 1;
|
||||||
}
|
}
|
||||||
b->m_nnlistsizes.push_back(nnames);
|
b->m_nnlistsizes.push_back(nnames);
|
||||||
|
Reference in New Issue
Block a user