summaryrefslogtreecommitdiffstats
path: root/source/Simulator/LavaSimulator.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-13 11:53:28 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-13 11:53:28 +0200
commitf7da7c2536b438db92bc28b88c4139d9af15e44f (patch)
tree4710e9e41ebcf2317ebacade2801732ba9184b41 /source/Simulator/LavaSimulator.cpp
parentProtoProxy: Fixed parsing of the PACKET_PLAYER_ABILITIES packet. (diff)
downloadcuberite-f7da7c2536b438db92bc28b88c4139d9af15e44f.tar
cuberite-f7da7c2536b438db92bc28b88c4139d9af15e44f.tar.gz
cuberite-f7da7c2536b438db92bc28b88c4139d9af15e44f.tar.bz2
cuberite-f7da7c2536b438db92bc28b88c4139d9af15e44f.tar.lz
cuberite-f7da7c2536b438db92bc28b88c4139d9af15e44f.tar.xz
cuberite-f7da7c2536b438db92bc28b88c4139d9af15e44f.tar.zst
cuberite-f7da7c2536b438db92bc28b88c4139d9af15e44f.zip
Diffstat (limited to 'source/Simulator/LavaSimulator.cpp')
-rw-r--r--source/Simulator/LavaSimulator.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/source/Simulator/LavaSimulator.cpp b/source/Simulator/LavaSimulator.cpp
new file mode 100644
index 000000000..726cc37e4
--- /dev/null
+++ b/source/Simulator/LavaSimulator.cpp
@@ -0,0 +1,20 @@
+#include "Globals.h"
+#include "LavaSimulator.h"
+#include "Defines.h"
+#include "World.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;
+}
+
+
+bool cLavaSimulator::IsAllowedBlock(BLOCKTYPE a_BlockType)
+{
+ return IsBlockLava(a_BlockType);
+} \ No newline at end of file