2012-06-14 09:06:06 -04:00
|
|
|
#include "Globals.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "LavaSimulator.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
#include "Defines.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "World.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
bool cLavaSimulator::IsAllowedBlock(BLOCKTYPE a_BlockType)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-10-03 04:52:11 -04:00
|
|
|
return IsBlockLava(a_BlockType);
|
2011-12-25 11:20:06 -05:00
|
|
|
}
|