diff --git a/modes/dig_100.lua b/modes/dig_100.lua index 161965a9..b19e6f17 100644 --- a/modes/dig_100.lua +++ b/modes/dig_100.lua @@ -1,6 +1,6 @@ local function check_rise(P) for _=1,math.min(8,100-P.stat.dig)-P.garbageBeneath do - P:garbageRise(13,1,P:getHolePos()) + P:garbageRise(21,1,P:getHolePos()) end if P.stat.dig==100 then P:win("finish") diff --git a/modes/dig_40.lua b/modes/dig_40.lua index 0b752f82..88e3d923 100644 --- a/modes/dig_40.lua +++ b/modes/dig_40.lua @@ -1,6 +1,6 @@ local function check_rise(P) for _=1,math.min(8,40-P.stat.dig)-P.garbageBeneath do - P:garbageRise(13,1,P:getHolePos()) + P:garbageRise(21,1,P:getHolePos()) end if P.stat.dig==40 then P:win("finish") diff --git a/modes/dig_400.lua b/modes/dig_400.lua index 5be3d95b..fcb74597 100644 --- a/modes/dig_400.lua +++ b/modes/dig_400.lua @@ -1,6 +1,6 @@ local function check_rise(P) for _=1,math.min(8,400-P.stat.dig)-P.garbageBeneath do - P:garbageRise(13,1,P:getHolePos()) + P:garbageRise(21,1,P:getHolePos()) end if P.stat.dig==400 then P:win("finish")