summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
Diffstat (limited to 'npc')
-rw-r--r--npc/items/alcohol.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/items/alcohol.txt b/npc/items/alcohol.txt
index c83ae406b..80d040f0d 100644
--- a/npc/items/alcohol.txt
+++ b/npc/items/alcohol.txt
@@ -45,10 +45,12 @@ OnUse:
if (ALC_THRESHOLD) {
.@vit=readparam2(bVit);
if (@Alcohol+ALC_THRESHOLD > .@vit) {
- dispbottom l("You vomit, you are too drunk for this to have effect anymore.");
+ //dispbottom l("You vomit, you are too drunk for this to have effect anymore.");
+ dispbottom l("You vomit, you are too drunk and drinking is harmful.");
dispbottom l("Raise vitality to be able to drink even more.");
sc_start SC_CONFUSION, 5000, 0, 10000, SCFLAG_NOAVOID; // Warning, forces user to use @resync!
- end;
+ //end; // FIXME
+ percentheal -@Alcohol, -@Alcohol;
}
}
.@deltatime=2*60*1000; // How long (in ms) each Alcohol point works? (max. 100 points)