put methods onto terraintile

This commit is contained in:
Evan
2025-02-01 12:05:11 -08:00
parent 8443095d89
commit dab427d614
30 changed files with 439 additions and 149 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ export class BotSpawner {
spawnBot(botName: string): SpawnIntent | null {
const tile = this.randTile()
if (!tile.isLand()) {
if (!tile.terrain().isLand()) {
return null
}
for (const spawn of this.bots) {