From c506de8b5b17e446f8fd4e928f5d121937160b7c Mon Sep 17 00:00:00 2001 From: MrZ626 <1046101471@qq.com> Date: Fri, 9 Oct 2020 17:55:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8C=96=E6=8E=98=E6=A8=A1=E5=BC=8F=E8=83=9C?= =?UTF-8?q?=E5=88=A9=E6=A0=87=E8=AF=86=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modes/dig_10.lua | 2 +- modes/dig_100.lua | 2 +- modes/dig_40.lua | 2 +- modes/dig_400.lua | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modes/dig_10.lua b/modes/dig_10.lua index 282aa9e7..15275a22 100644 --- a/modes/dig_10.lua +++ b/modes/dig_10.lua @@ -1,6 +1,6 @@ local function check_rise(P) if P.stat.dig==10 then - P:win() + P:win("finish") end end diff --git a/modes/dig_100.lua b/modes/dig_100.lua index 573906ba..550c0948 100644 --- a/modes/dig_100.lua +++ b/modes/dig_100.lua @@ -3,7 +3,7 @@ local function check_rise(P) P:garbageRise(13,1,P:RND(10)) end if P.stat.dig==100 then - P:win() + P:win("finish") end end diff --git a/modes/dig_40.lua b/modes/dig_40.lua index e9b35141..e42bbe01 100644 --- a/modes/dig_40.lua +++ b/modes/dig_40.lua @@ -3,7 +3,7 @@ local function check_rise(P) P:garbageRise(13,1,P:RND(10)) end if P.stat.dig==40 then - P:win() + P:win("finish") end end diff --git a/modes/dig_400.lua b/modes/dig_400.lua index f07ab422..c0b73d24 100644 --- a/modes/dig_400.lua +++ b/modes/dig_400.lua @@ -3,7 +3,7 @@ local function check_rise(P) P:garbageRise(13,1,P:RND(10)) end if P.stat.dig==400 then - P:win() + P:win("finish") end end