*/
@Override
public int move(IWare ware, int amount,IPlayer player) {
int moved = super.move(ware, amount,player);
if (player!=null){ // possible from test or from the city itself
Contributions contrib = playersContributions.get(player);
contrib.contribute(ware, moved);
}
return moved;
}