diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-17 01:18:16 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-17 01:18:16 -0400 |
commit | 113c6d105a0b06603388e5e0ded90ed169ae0c50 (patch) | |
tree | 70af321cdce86a331141e437f6abae3c1cefd74a /client/src/logic/players.ts | |
parent | ts (diff) | |
download | tuxman-113c6d105a0b06603388e5e0ded90ed169ae0c50.tar.gz tuxman-113c6d105a0b06603388e5e0ded90ed169ae0c50.tar.bz2 tuxman-113c6d105a0b06603388e5e0ded90ed169ae0c50.zip |
map editor
Diffstat (limited to '')
-rw-r--r-- | client/src/logic/players.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/logic/players.ts b/client/src/logic/players.ts index ebe469f..96779fe 100644 --- a/client/src/logic/players.ts +++ b/client/src/logic/players.ts @@ -33,7 +33,7 @@ export const updatePlayers = (data: GameState, input: Input) => { data.players[added] ||= { pos: {x: 1, y: 1}, inputRotation: Rotation.EAST, - moveRotation: Rotation.EAST, + moveRotation: Rotation.NOTHING, moving: false, }; |