From 5d4b29e3e74306aa98eff28cc14ba9536b6a2aa8 Mon Sep 17 00:00:00 2001 From: Uwe Jugel Date: Sat, 23 Jul 2022 22:38:53 +0000 Subject: [PATCH] balanced reward for multi-line base line removal --- src/game.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.vala b/src/game.vala index dac6653..ff2552d 100644 --- a/src/game.vala +++ b/src/game.vala @@ -889,7 +889,7 @@ public class Game : Object } /* You get a bonus for getting back to the base */ if (base_line_destroyed) - score += 10000 * level; + score += 2500 * level * n_lines; /* Increase speed if level has changed */ if (level != old_level) -- GitLab