diff --git a/app/Console/Commands/corpJournal.php b/app/Console/Commands/corpJournal.php index e4e162544..9237e5727 100644 --- a/app/Console/Commands/corpJournal.php +++ b/app/Console/Commands/corpJournal.php @@ -78,6 +78,8 @@ class CorpJournal extends Command private function GetJournal($charId) { $finances = new FinanceHelper(); //Get the master wallet journal for the corporation for the character - $finances->GetWalletJournal(1, $charId); + $lastPage = $finances->GetWalletJournal(1, $charId); + + return $lastPage; } }