Skip to content

Commit

Permalink
Fix fleet moving in mess bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xor72000 committed Aug 23, 2017
1 parent 71461d6 commit d9beb00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Modules/Ares/Manager/CommanderManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ public function getEventInfo(Commander $commander) {
public function uChangeBase($commanderId) {
$commander = $this->get($commanderId);
$place = $this->placeManager->get($commander->rDestinationPlace);
$place->commanders = $this->getBaseCommanders($place->id);
$place->commanders = $this->getBaseCommanders($place->id,[Commander::AFFECTED,Commander::MOVING]);
$commanderPlace = $this->placeManager->get($commander->rBase);
$player = $this->playerManager->get($commander->rPlayer);
$playerBonus = $this->playerBonusManager->getBonusByPlayer($player);
Expand Down

0 comments on commit d9beb00

Please sign in to comment.