Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
codergautam committed Dec 23, 2023
1 parent 412b3d4 commit e15d723
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions client/public/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FYCMFVTKHX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-FYCMFVTKHX');
</script>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand All @@ -18,5 +27,6 @@
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>

</body>
</html>
2 changes: 1 addition & 1 deletion client/src/game/Settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const settingsList: Record<string, SettingType> = {
{ name: 'Mouse Only', value: 'mouse' },
{ name: 'Mouse + Keys', value: 'keys' },
],
default: 'keys',
default: 'mouse',
},
sound: {
name: 'Sound',
Expand Down
6 changes: 3 additions & 3 deletions server/src/game/components/LevelSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]: {
Expand All @@ -38,7 +38,7 @@ class LevelSystem {
},
[Types.Buff.Damage]: {
level: 0,
step: 0.2,
step: 0.1,
max: 10,
buyable: true,
},
Expand Down

0 comments on commit e15d723

Please sign in to comment.