(count: number)
| 208 | } |
| 209 | |
| 210 | async simulateDays(count: number): Promise<void> { |
| 211 | for (let d = 0; d < count; d++) { |
| 212 | const gt = this.worldManager.getCurrentTime(); |
| 213 | console.log(`\n--- Simulating Day ${gt.day} ---`); |
| 214 | await this.simulateDay(); |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | private finalizeTickEvents(events: SimulationEvent[]): SimulationEvent[] { |
| 219 | for (const event of events) { |
nothing calls this directly
no test coverage detected