This was SVN commit r21002.
This commit is contained in:
elexis
2018-01-24 05:41:27 +00:00
parent f27743348e
commit 8599a20353
@@ -232,14 +232,14 @@ function paintTileClassBasedOnHeight(minHeight, maxHeight, mode, tileClass)
{
createArea(
new HeightPlacer(mode, minHeight, maxHeight),
new TileClassPainter(getTileClass(tileClass)));
new TileClassPainter(tileClass));
}
function unPaintTileClassBasedOnHeight(minHeight, maxHeight, mode, tileClass)
{
createArea(
new HeightPlacer(mode, minHeight, maxHeight),
new TileClassUnPainter(getTileClass(tileClass)));
new TileClassUnPainter(tileClass));
}
/**