From 5b233a6c48409497f9ee0d119bf0eaaf2e236c08 Mon Sep 17 00:00:00 2001 From: PizZaKatZe Date: Mon, 8 Mar 2021 12:16:46 +0100 Subject: [PATCH] Set default game FPS to 20 --- front/src/Connexion/LocalUserStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/Connexion/LocalUserStore.ts b/front/src/Connexion/LocalUserStore.ts index 24d4ab42..e9d27745 100644 --- a/front/src/Connexion/LocalUserStore.ts +++ b/front/src/Connexion/LocalUserStore.ts @@ -84,7 +84,7 @@ class LocalUserStore { localStorage.setItem(gameQualityKey, "" + value); } getGameQualityValue(): number { - return parseInt(localStorage.getItem(gameQualityKey) || "60"); + return parseInt(localStorage.getItem(gameQualityKey) || "20"); } setVideoQualityValue(value: number): void {