From 7ea0ef275a4ee75d2279edcc37b19ffe2e44d5a0 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 28 Mar 2011 15:14:48 -0400 Subject: [PATCH] [sm130futures] Work towards Extreme scoring. --- Themes/_fallback/Scripts/04 SpecialScoring.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Themes/_fallback/Scripts/04 SpecialScoring.lua b/Themes/_fallback/Scripts/04 SpecialScoring.lua index 2f24ebff05..3116e6a0a5 100644 --- a/Themes/_fallback/Scripts/04 SpecialScoring.lua +++ b/Themes/_fallback/Scripts/04 SpecialScoring.lua @@ -1,6 +1,6 @@ --Special Scoring types. local r = {}; -local DisabledScoringModes = { 'DDR Extreme', '[SSC] Radar Master' }; +local DisabledScoringModes = { '[SSC] Radar Master' }; --the following metatable makes any missing value in a table 0 instead of nil. local ZeroIfNotFound = { __index = function() return 0 end; };