diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-14 14:37:13 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-14 14:37:13 +0100 |
commit | 9f38c219e2851324b8b2694315abed4d3138fca2 (patch) | |
tree | 6114c3a98299274030561cab343b35e2dabb78c8 /source/cLavaSimulator.cpp | |
parent | Fixing build for linux using GNUmakefile (explicitly removed LeakFinder and StackWalker) (diff) | |
download | cuberite-9f38c219e2851324b8b2694315abed4d3138fca2.tar cuberite-9f38c219e2851324b8b2694315abed4d3138fca2.tar.gz cuberite-9f38c219e2851324b8b2694315abed4d3138fca2.tar.bz2 cuberite-9f38c219e2851324b8b2694315abed4d3138fca2.tar.lz cuberite-9f38c219e2851324b8b2694315abed4d3138fca2.tar.xz cuberite-9f38c219e2851324b8b2694315abed4d3138fca2.tar.zst cuberite-9f38c219e2851324b8b2694315abed4d3138fca2.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cLavaSimulator.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/cLavaSimulator.cpp b/source/cLavaSimulator.cpp index ea637ce3c..ad9afcdc8 100644 --- a/source/cLavaSimulator.cpp +++ b/source/cLavaSimulator.cpp @@ -1,14 +1,14 @@ -
-#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
-
+#include "Globals.h"
#include "cLavaSimulator.h"
#include "Defines.h"
+#include "cWorld.h"
cLavaSimulator::cLavaSimulator(cWorld *a_World)
: cFluidSimulator(a_World)
{
m_FluidBlock = E_BLOCK_LAVA;
+ m_StationaryFluidBlock = E_BLOCK_STATIONARY_LAVA;
m_MaxHeight = 6;
m_FlowReduction = 2;
}
|