summaryrefslogtreecommitdiff
path: root/npc/items
diff options
context:
space:
mode:
Diffstat (limited to 'npc/items')
-rw-r--r--npc/items/PoisonedWater.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/npc/items/PoisonedWater.txt b/npc/items/PoisonedWater.txt
index 6986e27a..66e7280f 100644
--- a/npc/items/PoisonedWater.txt
+++ b/npc/items/PoisonedWater.txt
@@ -2,14 +2,12 @@
// Authors:
// Alastrim, Vasily_Makarov, Reid
// Description:
-// Heal of 25hp and add 1/4 bad luck to be poisoned.
+// Heal of 15hp and add 1/4 bad luck to be poisoned.
function script usePoisonedWater {
set @temp, rand(4);
if (!@temp) sc_start sc_poison, 1, 50;
- if (!@temp) message strcharinfo(0);
if (@temp) itemheal 15, 0;
- if (@temp) message strcharinfo(0);
set @temp, 0;
return;
}