summaryrefslogtreecommitdiff
path: root/test-client/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test-client/main.ts')
-rw-r--r--test-client/main.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-client/main.ts b/test-client/main.ts
index 09e1c99a..3568244e 100644
--- a/test-client/main.ts
+++ b/test-client/main.ts
@@ -335,7 +335,7 @@ function keyboard(ev: KeyboardEvent, down: boolean) {
if (!keys_down.has(KEY_INTERACT) && ev.code == KEY_INTERACT && down) set_interact(true)
if (keys_down.has(KEY_INTERACT) && ev.code == KEY_INTERACT && !down) set_interact(false)
if (down && ev.code in QUICK_COMMANDS) send({ player: my_id, type: "communicate", message: { text: QUICK_COMMANDS[ev.code] } })
- if (down && ev.code == "KeyE") particle_splash(get_interact_target() ?? { x: 0, y: 0 })
+ if (down && ev.code == "KeyE") particle_splash(get_interact_target() ?? { x: 0, y: 0 }, 0.8)
if (down) keys_down.add(ev.code)
else keys_down.delete(ev.code)
}