From 05940761f67f87ae6e8ee45c9c1e9286b05796dc Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 25 Nov 2014 14:23:26 -0500 Subject: [PATCH] v0.2.3 light buffs to Horn of Plenty (before levelling up) --- .../shatteredpixeldungeon/items/artifacts/HornOfPlenty.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java index e3e888b50..72ffb5570 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java @@ -151,9 +151,9 @@ public class HornOfPlenty extends Artifact { public boolean act() { if (charge < chargeCap && !cursed) { - //generates 0.2 food value every round, +0.01667 value per level - //to a max of ~0.7 food value per round (0.2+~0.5, at level 30) - partialCharge += 0.2f + (0.01667f*level); + //generates 0.25 food value every round, +0.015 value per level + //to a max of 0.70 food value per round (0.25+0.5, at level 30) + partialCharge += 0.25f + (0.015f*level); //charge is in increments of 36 food value. if (partialCharge >= 36) {