@Override
public void notify(DateObject date) {
ITradingOffice office = player.findTradingOffice(city);
int weekIndex = date.getDayInWeek();
ISteward steward = office.getSteward();
int dailyCost=0;
if (steward!=null){
dailyCost = (int) Math.rint(steward.getSalary()/7.0);
}
for (int i = weekIndex; i<stewardCostsDays.length;i++){
this.stewardCostsDays[i] = dailyCost;
}
int sum = 0;