don't allow streamline floodfill

This commit is contained in:
jacob1 2013-01-10 09:50:10 -05:00
parent 9d67dd61e8
commit 17302f03c7

View File

@ -110,6 +110,7 @@ void WallTool::DrawRect(Simulation * sim, Brush * brush, ui::Point position1, ui
sim->CreateWallBox(position1.X, position1.Y, position2.X, position2.Y, toolID, 0);
}
void WallTool::DrawFill(Simulation * sim, Brush * brush, ui::Point position) {
if (toolID != WL_STREAM)
sim->FloodWalls(position.X, position.Y, toolID, -1, -1, 0);
}