Fixed bug in LavaReset that could turn lava into water.

This commit is contained in:
Justin Aquadro 2012-07-22 00:20:02 -04:00
parent 489e3c03d0
commit 6bb81f187f

View file

@ -83,7 +83,7 @@ namespace Substrate.Core
data[i] = 0;
}
else if (blocks[i] == BlockInfo.Lava.ID) {
blocks[i] = (byte)BlockInfo.StationaryWater.ID;
blocks[i] = (byte)BlockInfo.StationaryLava.ID;
}
}
}