momir indicator (non PSP)

green + can play a land, red + means you already played a land/ or cant
play a land anymore. also some minor fix
This commit is contained in:
Anthony Calosa
2017-02-28 17:32:01 +08:00
parent 5a3493c0c9
commit 1430cfd6b4
4 changed files with 32 additions and 4 deletions
+4 -1
View File
@@ -338,7 +338,10 @@ void GuiPlay::Update(float dt)
{
battleField.Update(dt);
for (iterator it = cards.begin(); it != cards.end(); ++it)
(*it)->Update(dt);
{
if((*it))
(*it)->Update(dt);
}
}
int GuiPlay::receiveEventPlus(WEvent * e)