summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/items/alcohol.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/npc/items/alcohol.txt b/npc/items/alcohol.txt
index 25f93c744..b171eedc9 100644
--- a/npc/items/alcohol.txt
+++ b/npc/items/alcohol.txt
@@ -109,6 +109,9 @@ OnUse:
.@delay=@Alcohol*(.@deltatime/1000);
.@min=-(remaining_bonus(SC_OVERLAPEXPUP, true)*2);
.@max=-(remaining_bonus(SC_OVERLAPEXPUP, true)*2);
+ // Sanitization, and nerf the debuff
+ .@min=(.@min/2)+1;
+ .@max=(.@max/2)+2;
SC_Bonus(.@delay, SC_ATTHASTE_INFINITY, .@min, .@max);
close;
}