diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-29 11:40:46 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-29 11:40:46 -0400 |
commit | f5fcce110a915fca1b114001962170733276e5df (patch) | |
tree | 6ce82c649d7377b42e75c9feb88d73e4aa15d713 /client/src/logic/players.ts | |
parent | ghost (diff) | |
download | tuxman-f5fcce110a915fca1b114001962170733276e5df.tar.gz tuxman-f5fcce110a915fca1b114001962170733276e5df.tar.bz2 tuxman-f5fcce110a915fca1b114001962170733276e5df.zip |
audio, finalize gameplay, wrap around map, stuff
Diffstat (limited to 'client/src/logic/players.ts')
-rw-r--r-- | client/src/logic/players.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/src/logic/players.ts b/client/src/logic/players.ts index 96779fe..96337ea 100644 --- a/client/src/logic/players.ts +++ b/client/src/logic/players.ts @@ -34,7 +34,12 @@ export const updatePlayers = (data: GameState, input: Input) => { pos: {x: 1, y: 1}, inputRotation: Rotation.EAST, moveRotation: Rotation.NOTHING, + velocityRotation: Rotation.NOTHING, moving: false, + thiccLeft: 0, + dead: false, + framesDead: 0, + atePellets: 0 }; } |