From 0f4cc5ec470b6e8d934dec38553e099bba7c3a9a Mon Sep 17 00:00:00 2001 From: arne Date: Mon, 25 Mar 2024 08:02:40 +0100 Subject: [PATCH] Mystery and vagueness --- client/src/main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/main.ts b/client/src/main.ts index f9e3ff0..f5b5e72 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -97,6 +97,7 @@ canvas.addEventListener('mousemove', at60fps((e) => { } })) +// TODO: Multi-touch does not get sent correctly canvas.addEventListener('touchmove', at60fps((e) => { const shouldSpawn = hasSpace.next().value! const radius = MAX_RADIUS / 3*2 @@ -124,7 +125,7 @@ socket.addEventListener('message', at60fps((e) => { ? 'The place is empty and quiet.' : state.others === 1 ? 'Somebody else is also here.' - : `There are ${state.others} others with you.`) + : 'Several people gathered around it.') } else if (message?.type === 'ripple') { const data = message const particle = createParticle(data.position, data.maxRadius)