Lower booster tip cooldown to 1 minute

This commit is contained in:
Shaun Bennett 2016-06-17 16:10:01 -05:00
parent 4e3062f413
commit 5f9a57b7e2
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class BoosterTipManager extends MiniDbClientPlugin<PlayerTipData>
public void addTip(Player player, Booster booster, Callback<TipAddResult> callback) public void addTip(Player player, Booster booster, Callback<TipAddResult> callback)
{ {
if (!Recharge.Instance.use(player, "Booster Tip", 1000 * 60 * 10, true, false)) if (!Recharge.Instance.use(player, "Booster Tip", 1000 * 60, true, false))
{ {
callback.run(TipAddResult.ON_COOLDOWN); callback.run(TipAddResult.ON_COOLDOWN);
return; return;