aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components')
-rw-r--r--frontend/src/components/TetrisBoard.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/TetrisBoard.vue b/frontend/src/components/TetrisBoard.vue
index d7bd2d2..0185e53 100644
--- a/frontend/src/components/TetrisBoard.vue
+++ b/frontend/src/components/TetrisBoard.vue
@@ -113,7 +113,7 @@ const tick = () => {
break;
}
- if (!props.networked && gameSpeed > 150 && elapsedBlocks % 3 === 0) {
+ if (gameSpeed > 150 && elapsedBlocks % 3 === 0) {
gameSpeed = Math.max(150, gameSpeed - (gameSpeed > 300 ? 75 : 10));
rescheduleTickTimer();
}