update version

This commit is contained in:
Evan
2024-11-30 13:49:45 -08:00
parent 30f72a3365
commit a7e82960d3
3 changed files with 5 additions and 4 deletions
+3 -2
View File
@@ -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
+1 -1
View File
@@ -28,7 +28,7 @@
</svg>
</a>
<h1 class="text-7xl sm:text-5xl md:text-6xl lg:text-7xl mb-2">OpenFront.io</h1>
<h2 class="text-3xl sm:text-4xl md:text-5xl lg:text-6xl mb-4">(v0.9.0)</h2>
<h2 class="text-3xl sm:text-4xl md:text-5xl lg:text-6xl mb-4">(v0.10.0)</h2>
<div class="flex justify-center items-start">
<div class="w-full max-w-3xl p-4 space-y-4">
<br />
+1 -1
View File
@@ -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
}