MCPcopy Create free account
hub / github.com/YGYOOO/WorldX / simulateDays

Method simulateDays

server/src/simulation/simulation-engine.ts:210–216  ·  view source on GitHub ↗
(count: number)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 2

simulateDayMethod · 0.95
getCurrentTimeMethod · 0.45

Tested by

no test coverage detected