forked from mirrors/NBTExplorer
Fixed bug in LavaReset that could turn lava into water.
This commit is contained in:
parent
489e3c03d0
commit
6bb81f187f
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ namespace Substrate.Core
|
||||||
data[i] = 0;
|
data[i] = 0;
|
||||||
}
|
}
|
||||||
else if (blocks[i] == BlockInfo.Lava.ID) {
|
else if (blocks[i] == BlockInfo.Lava.ID) {
|
||||||
blocks[i] = (byte)BlockInfo.StationaryWater.ID;
|
blocks[i] = (byte)BlockInfo.StationaryLava.ID;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue