From fa02c95c417c47a2ff472a2e65cf45a53b4b0c4427df813ce0f3825caa92b843 Mon Sep 17 00:00:00 2001 From: aslan Date: Wed, 21 Jan 2026 15:46:19 -0500 Subject: [PATCH] Add travel --- src/modules/game/game.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/game/game.ts b/src/modules/game/game.ts index c36b58e..c753374 100644 --- a/src/modules/game/game.ts +++ b/src/modules/game/game.ts @@ -241,7 +241,7 @@ const onTravel = (text: string, roomId: string, sender: string) => { `You're now travelling to ${travelLocation.name}. It will take you ${travelTime.toFixed(1)} hours`, ); - startTravel(player, location.id, client, roomId); + startTravel(player, travelLocation.id, client, roomId); }; export { registerModuleGame };