aboutsummaryrefslogtreecommitdiffstats
path: root/game
diff options
context:
space:
mode:
Diffstat (limited to 'game')
-rw-r--r--game/plugins/5000points.usdx4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/plugins/5000points.usdx b/game/plugins/5000points.usdx
index b48984f0..7ebd23b4 100644
--- a/game/plugins/5000points.usdx
+++ b/game/plugins/5000points.usdx
@@ -21,7 +21,7 @@ function Sing()
Scores = ScreenSing.GetScores();
for i = 1, #Scores do
- if (Scores[i] >= 100) then
+ if (Scores[i] >= 5000) then
ScreenSing.Finish();
break;
end
@@ -34,7 +34,7 @@ function Calculate_Winner()
Scores = Scores or ScreenSing.GetScores();
local Ranking = {};
for i = 1, #Scores do
- if Scores[i] >= 100 then
+ if Scores[i] >= 5000 then
Ranking[i] = 1
else
Ranking[i] = #Scores