summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/items/rand_sc_heal.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/items/rand_sc_heal.txt b/npc/items/rand_sc_heal.txt
index a005bf095..6f0ef38b4 100644
--- a/npc/items/rand_sc_heal.txt
+++ b/npc/items/rand_sc_heal.txt
@@ -87,11 +87,11 @@ OnUse:
// Calculate delay if it was not given
if (!@delay || @delay > 60) {
- @delay=1 + (@type*2);
+ @delay=1 + ((@type*3)/2);
}
// Update val1
- @val1 = @val1 / @delay;
+ @val1 = (@val1 / @delay) + 1;
// Decide the healing bonus type. We have four types: S, L, G and M
// By default, we use 'S'