Skip to content
Snippets Groups Projects
Commit 683fbb67 authored by Nils Jonathan Friedrich Eckardt's avatar Nils Jonathan Friedrich Eckardt
Browse files

Edit LevelScene.cpp

minor bugfix: wrong variable name
parent 841af8d8
Branches
No related tags found
No related merge requests found
......@@ -292,9 +292,9 @@ void LevelScene::onTileClicked(int index)
else if (id > 54 && id < 60)
id -= 5;
setTile(index, m_selectedTileId); // symmetric Placement
setTile(index, id); // symmetric Placement
if (m_advancedTilePlacement)
if (m_advancedTilePlacement && id < 29)
{
placeAdvancedTiles(index); // symmetric advanced Placement
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment