Fix dig 10l, 40l, and 100l (#310)

Previously, it didn't find eventsets named "dig_(n)L" because there were only "dig_(n)l" (capitalization). This fixes that.
This commit is contained in:
Not-A-Normal-Robot
2021-09-21 22:34:17 +07:00
committed by MrZ626
parent f1068eacd8
commit e57ddbb6eb
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ return{
color=COLOR.green, color=COLOR.green,
env={ env={
pushSpeed=6, pushSpeed=6,
eventSet='dig_100L', eventSet='dig_100l',
bg='bg2',bgm='way', bg='bg2',bgm='way',
}, },
score=function(P)return{P.stat.time,P.stat.piece}end, score=function(P)return{P.stat.time,P.stat.piece}end,

View File

@@ -2,7 +2,7 @@ return{
color=COLOR.cyan, color=COLOR.cyan,
env={ env={
pushSpeed=6, pushSpeed=6,
eventSet='dig_10L', eventSet='dig_10l',
bg='bg1',bgm='way', bg='bg1',bgm='way',
}, },
score=function(P)return{P.stat.time,P.stat.piece}end, score=function(P)return{P.stat.time,P.stat.piece}end,

View File

@@ -2,7 +2,7 @@ return{
color=COLOR.lBlue, color=COLOR.lBlue,
env={ env={
pushSpeed=6, pushSpeed=6,
eventSet='dig_40L', eventSet='dig_40l',
bg='bg1',bgm='way', bg='bg1',bgm='way',
}, },
score=function(P)return{P.stat.time,P.stat.piece}end, score=function(P)return{P.stat.time,P.stat.piece}end,