Fixing assignments.

This commit is contained in:
marcins78@gmail.com
2012-03-15 21:31:41 +00:00
parent 0b342b5d89
commit c693c52bbd
2 changed files with 4 additions and 2 deletions

View File

@@ -75,8 +75,9 @@ public class FreePeoplePlayerAssignsMinionsGameProcess implements GameProcess {
new AssignmentPhaseEffect(gameState.getCurrentPlayerId(), assignments, "Free People player assignments"));
}
});
} else {
_leftoverMinions = new HashSet<PhysicalCard>();
}
}
});
game.getActionsEnvironment().addActionToStack(action);

View File

@@ -27,12 +27,13 @@ public class DaoProvider implements InjectableProvider<Context, Type> {
private DbAccess _dbAccess;
private CollectionSerializer _collectionSerializer;
@Context
private LotroCardBlueprintLibrary _library;
public DaoProvider() {
_dbAccess = new DbAccess();
_collectionSerializer = new CollectionSerializer();
_library = new LotroCardBlueprintLibrary();
}
@Override