From 5e49354cd576c2b59ce2daa72f6a5456fd65076c Mon Sep 17 00:00:00 2001 From: TWLTriston Date: Sat, 25 Nov 2017 07:16:16 -0500 Subject: [PATCH] A little too short on the mining bonus. --- fish_market.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish_market.lua b/fish_market.lua index aea68baa..3700bff3 100644 --- a/fish_market.lua +++ b/fish_market.lua @@ -407,7 +407,7 @@ function fish_market_on_180_ticks() end if global.player_mining_boost_records then for k,v in pairs(global.player_mining_boost_records) do - if game.tick - v.start_tick > 60 then + if game.tick - v.start_tick > 6000 then reset_player_miningspeed(game.players[k]) end end