From 186984e69739ae23c585aa8592d821883544e9c0 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 22 Dec 2012 10:45:23 +0000 Subject: [PATCH] PreSimulator finisher should now drop blocks through water and lava (untested) http://forum.mc-server.org/showthread.php?tid=409&pid=5728#pid5728 git-svn-id: http://mc-server.googlecode.com/svn/trunk@1097 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Generating/FinishGen.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/Generating/FinishGen.cpp b/source/Generating/FinishGen.cpp index edb213a13..36114fddb 100644 --- a/source/Generating/FinishGen.cpp +++ b/source/Generating/FinishGen.cpp @@ -441,6 +441,10 @@ void cFinishGenPreSimulator::CollapseSandGravel( break; } case E_BLOCK_AIR: + case E_BLOCK_WATER: + case E_BLOCK_STATIONARY_WATER: + case E_BLOCK_LAVA: + case E_BLOCK_STATIONARY_LAVA: { // Do nothing break;