aboutsummaryrefslogtreecommitdiff
path: root/test-client
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-24 15:21:22 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-24 15:21:22 +0200
commit277e87c244d003bee9374d71e678049c41e61e5b (patch)
tree3127d57c13ed40c007a870dba37e3d9faf4d5c99 /test-client
parent75b3c33ed130eaacc2e962846d951ea6472c2ed7 (diff)
downloadhurrycurry-277e87c244d003bee9374d71e678049c41e61e5b.tar
hurrycurry-277e87c244d003bee9374d71e678049c41e61e5b.tar.bz2
hurrycurry-277e87c244d003bee9374d71e678049c41e61e5b.tar.zst
change some stuff regarding default timer for games
Diffstat (limited to 'test-client')
-rw-r--r--test-client/main.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/test-client/main.ts b/test-client/main.ts
index 605bca5e..a0386631 100644
--- a/test-client/main.ts
+++ b/test-client/main.ts
@@ -330,6 +330,7 @@ function keyboard(ev: KeyboardEvent, down: boolean) {
if (down && ev.code == "Numpad3") send({ player: my_id, type: "communicate", message: { text: "/start sophomore" } })
if (down && ev.code == "Numpad4") send({ player: my_id, type: "communicate", message: { text: "/start debug" } })
if (down && ev.code == "Numpad5") send({ player: my_id, type: "communicate", message: { text: "/start 5star" } })
+ if (down && ev.code == "Numpad6") send({ player: my_id, type: "communicate", message: { text: "/start campaign/lobby" } })
if (down && ev.code == "Numpad8") send({ player: my_id, type: "communicate", message: { text: "/start-tutorial plate:seared-patty,sliced-bun" } })
if (down && ev.code == "Numpad9") send({ player: my_id, type: "communicate", message: { text: "/start-tutorial plate:bun" } })
if (down && ev.code == "Numpad7") send({ player: my_id, type: "communicate", message: { text: "/end-tutorial" } })