Skip to content
Snippets Groups Projects
Commit 5724bbcd authored by Susan Yuen's avatar Susan Yuen
Browse files

Edited menu button order and removed deselection of unit after movement.

parent 910a47fc
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,6 @@ namespace Controller
}
GameState.getSelectedUnit().setMenuOpen(true); // opens drop down menu on screen again
setSelectedUnit(null, false); // unselect the unit
turnState = TurnState.Wait;
}
}
......
......@@ -40,8 +40,8 @@ namespace Model
this.spriteImage = spriteImage;
menuButtons[0] = attackButton;
menuButtons[1] = moveButton;
menuButtons[2] = waitButton;
menuButtons[3] = itemButton;
menuButtons[2] = itemButton;
menuButtons[3] = waitButton;
this.charInfo = charInfo;
pixelCoordinates = coordinates;
int positionX = (int)Math.Round(coordinates.X / 32);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment