fix failing SAM test

This commit is contained in:
Evan
2025-04-18 14:26:19 -07:00
parent d66dcedcc2
commit 9de072c0c6
3 changed files with 43 additions and 58 deletions
+6
View File
@@ -28,3 +28,9 @@ export function constructionExecution(
game.executeNextTick();
}
}
export function executeTicks(game: Game, numTicks: number): void {
for (let i = 0; i < numTicks; i++) {
game.executeNextTick();
}
}