diff --git a/TODO.txt b/TODO.txt index aa8d16d6d..26ad2d0c6 100644 --- a/TODO.txt +++ b/TODO.txt @@ -203,10 +203,11 @@ * captured tradeships use async pathfinder DONE 11/29/2024 * BUG: trade ships not building DONE 11/29/2024 * make mini map for path finding DONE 11/29/2024 -* have NPCs build destroyers and battleships +* have NPCs build destroyers and battleships DONE 11/30/2024 +* add info view on top right +* add defense post * add radiation from nuke * spread out calculate clusters -* add defense post * NPC has relations * only show units you can build in the build menu * REFACTOR: make TransportShip follow build unit flow diff --git a/src/client/index.html b/src/client/index.html index c457593ac..c25e742fe 100644 --- a/src/client/index.html +++ b/src/client/index.html @@ -28,7 +28,7 @@

OpenFront.io

-

(v0.9.0)

+

(v0.10.0)


diff --git a/src/core/configuration/DevConfig.ts b/src/core/configuration/DevConfig.ts index bb3edb960..abf52d718 100644 --- a/src/core/configuration/DevConfig.ts +++ b/src/core/configuration/DevConfig.ts @@ -5,7 +5,7 @@ export const devConfig = new class extends DefaultConfig { unitInfo(type: UnitType): UnitInfo { const info = super.unitInfo(type) const oldCost = info.cost - info.cost = (p: Player) => oldCost(p) / 1000 + // info.cost = (p: Player) => oldCost(p) / 1000 return info }