]> git.lizzy.rs Git - minetest.git/blobdiff - src/reflowscan.cpp
Move duplicated mapgen parameters to class MapgenBasic (#9134)
[minetest.git] / src / reflowscan.cpp
index eec37102220bb2a5da280361379dcc6b39bc8cd8..9d5c965d8c4dc3661428a01d9c51db8c6dcb75e2 100644 (file)
@@ -22,13 +22,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include "mapblock.h"
 #include "nodedef.h"
 #include "util/timetaker.h"
-#include "util/cpp11.h"
 
 
-ReflowScan::ReflowScan(Map *map, INodeDefManager *ndef) :
+ReflowScan::ReflowScan(Map *map, const NodeDefManager *ndef) :
        m_map(map),
-       m_ndef(ndef),
-       m_liquid_queue(nullptr)
+       m_ndef(ndef)
 {
 }