Rudimentary moments working, instant chat debug tool

The moments are now triggered correctly and have the phases happen as
expected.
Also added an instant chat tool that skips the playing out of all the
messages and instead lets us quickly move through a game
This commit is contained in:
Tyler Marques 2025-05-29 15:46:36 -07:00
parent 8a3b6273cc
commit e1309c4012
No known key found for this signature in database
GPG key ID: CB99EDCF41D3016F
5 changed files with 130 additions and 7 deletions

View file

@ -5,6 +5,7 @@
import { updateNextMomentDisplay, initNextMomentTool } from "./nextMoment";
import { initDebugProvinceHighlighting } from "./provinceHighlight";
import { initInstantChatTool } from "./instantChat";
export class DebugMenu {
private toggleBtn: HTMLButtonElement;
@ -171,6 +172,7 @@ export class DebugMenu {
}
private initTools(): void {
initInstantChatTool(this);
initNextMomentTool(this);
initDebugProvinceHighlighting()
}