Have mobile game handle opening/closing mana pools itself

to improve compatibility with network play
This commit is contained in:
elcnesh
2015-05-19 09:28:31 +00:00
parent 1f18f9da05
commit 73bef51fcc
6 changed files with 31 additions and 24 deletions

View File

@@ -769,12 +769,12 @@ public final class CMatchUI
}
@Override
public Object showManaPool(final PlayerView player) {
return null; //not needed since mana pool icons are always visible
public void showManaPool(final PlayerView player) {
//not needed since mana pool icons are always visible
}
@Override
public void hideManaPool(final PlayerView player, final Object zoneToRestore) {
public void hideManaPool(final PlayerView player) {
//not needed since mana pool icons are always visible
}