From e15d723275427de5ab3d53748c00c33a84f764bc Mon Sep 17 00:00:00 2001 From: Gautam Anand Date: Sat, 23 Dec 2023 11:43:21 -0600 Subject: [PATCH] Fixes --- client/public/index.html | 10 ++++++++++ client/src/game/Settings.ts | 2 +- server/src/game/components/LevelSystem.js | 6 +++--- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/client/public/index.html b/client/public/index.html index f5044879..dbb83f51 100644 --- a/client/public/index.html +++ b/client/public/index.html @@ -1,6 +1,15 @@ + + + @@ -18,5 +27,6 @@
+ diff --git a/client/src/game/Settings.ts b/client/src/game/Settings.ts index 72586ae6..64a68be3 100644 --- a/client/src/game/Settings.ts +++ b/client/src/game/Settings.ts @@ -53,7 +53,7 @@ export const settingsList: Record = { { name: 'Mouse Only', value: 'mouse' }, { name: 'Mouse + Keys', value: 'keys' }, ], - default: 'keys', + default: 'mouse', }, sound: { name: 'Sound', diff --git a/server/src/game/components/LevelSystem.js b/server/src/game/components/LevelSystem.js index a4dca338..440e530d 100644 --- a/server/src/game/components/LevelSystem.js +++ b/server/src/game/components/LevelSystem.js @@ -15,13 +15,13 @@ class LevelSystem { [Types.Buff.Speed]: { level: 0, max: 10, - step: 0.1, + step: 0.75, buyable: true, }, [Types.Buff.Size]: { level: 0, max: 5, - step: 0.1, + step: 0.15, buyable: false, }, [Types.Buff.Health]: { @@ -38,7 +38,7 @@ class LevelSystem { }, [Types.Buff.Damage]: { level: 0, - step: 0.2, + step: 0.1, max: 10, buyable: true, },