1
0
This commit is contained in:
Tiger Wang
2014-04-18 12:59:14 +01:00
parent 200ea6254c
commit 6cb63a768d
2 changed files with 12 additions and 1 deletions

View File

@@ -771,6 +771,16 @@ void cEntity::TickBurning(cChunk & a_Chunk)
{
// Remember the current burning state:
bool HasBeenBurning = (m_TicksLeftBurning > 0);
if (GetWorld()->GetWeather() == eWeather_Rain)
{
if (HasBeenBurning)
{
m_TicksLeftBurning = 0;
OnFinishedBurning();
}
return;
}
// Do the burning damage:
if (m_TicksLeftBurning > 0)