jstar88/opbe

Battle report error?

Closed this issue · 1 comments

// in BattleReport.php
// function getAfterBattlePlayerGroup

if (!$endFleet->existShipType($idShipType))
{
    $endShipType = $shipType;
}
else
{
    $endShipType = $endFleet->getShipType($idShipType);
    $endShipType->increment($shipType->getCount());
}

// should be 
$endFleet->add( $shipType);

oh thanks, you are in right. Fixed