Fixed a bug about must be blocked requirement forcing the blocker to block multiple attackers locking the game.

This commit is contained in:
LevelX2 2015-07-05 11:48:19 +02:00
parent bb99caeb29
commit b2ed48da87
3 changed files with 103 additions and 45 deletions

View file

@ -60,7 +60,7 @@ public enum CardRepository {
// raise this if db structure was changed
private static final long CARD_DB_VERSION = 39;
// raise this if new cards were added to the server
private static final long CARD_CONTENT_VERSION = 22;
private static final long CARD_CONTENT_VERSION = 23;
private final Random random = new Random();
private Dao<CardInfo, Object> cardDao;