summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-06-07 21:51:03 -0300
committerJesusaves <cpntb1@ymail.com>2024-06-07 21:51:03 -0300
commitb6eff7c9102507727c3435062c81d247fcda0630 (patch)
treecd7bac7bf7a1af97b21fd9d5a5779fe7d6a9c190
parent5153de99ea18dc8e68d7b511703b52f3444c362d (diff)
downloadserverdata-b6eff7c9102507727c3435062c81d247fcda0630.tar.gz
serverdata-b6eff7c9102507727c3435062c81d247fcda0630.tar.bz2
serverdata-b6eff7c9102507727c3435062c81d247fcda0630.tar.xz
serverdata-b6eff7c9102507727c3435062c81d247fcda0630.zip
And remove the spurious zero causing the issue.
-rw-r--r--npc/025-1/ihclot.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/025-1/ihclot.txt b/npc/025-1/ihclot.txt
index 0880d8c7f..d59476590 100644
--- a/npc/025-1/ihclot.txt
+++ b/npc/025-1/ihclot.txt
@@ -115,7 +115,7 @@ function getPriceInt {
.@level=getarg(1);
.@final=.@price*.@level/5;
if (strcharinfo(0) == $MOST_HEROIC$)
- .@final=max(1, .@final-(.@level*5000));
+ .@final=max(1, .@final-(.@level*500));
return .@final;
}