diff --git a/autocookieclicker.user.js b/autocookieclicker.user.js index 3088b7b..5d4abfe 100644 --- a/autocookieclicker.user.js +++ b/autocookieclicker.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Automate CookieClicker // @namespace https://luzifer.io/ -// @version 0.17.2 +// @version 0.17.3 // @description Automate everything! // @author Knut Ahlers // @source https://github.com/Luzifer/automate-cookie-clicker @@ -56,6 +56,7 @@ function executeAutoActions() { for (let buyAmount = getMaxBuy() - product.amount; buyAmount > 0; buyAmount--) { if (product.getSumPrice(buyAmount) <= Game.cookies) { product.buy(buyAmount); + note('Purchased ' + buyAmount + ' ' + product.plural + ' for you.'); break; } }