Skip to content

Commit

Permalink
Fix missing semicolon during conflict (#29)
Browse files Browse the repository at this point in the history
* Update console.php

* Fix the previous data saving implementation

* Fix planet histories table

* Add campaigns and endpoints

Added campaign tracking with endpoints and a new endpoint for retrieving planets with active campaigns.

* Update console.php
  • Loading branch information
Kejax authored Apr 5, 2024
1 parent 5a537d4 commit aa36d5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion routes/console.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@
)) {
$history->touch();
} else {
PlanetHistory::create($planet)
PlanetHistory::create($planet);
}

}

// Mark old campaigns as marked if they're not in the array
Expand Down

0 comments on commit aa36d5e

Please sign in to comment.