diff options
author | Fedja Beader <fedja@protonmail.ch> | 2023-06-27 20:55:19 +0200 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2023-06-27 21:01:09 +0200 |
commit | 91645380fc0f515101b5f36524b5b5f95510c40b (patch) | |
tree | c6b97766f9d250739521bcf0e80ece0d375d4ad2 /npc/025-1/ihclot.txt | |
parent | 4c089d807a0febbbcfb47970f858cd0b1fdcfc89 (diff) | |
download | serverdata-91645380fc0f515101b5f36524b5b5f95510c40b.tar.gz serverdata-91645380fc0f515101b5f36524b5b5f95510c40b.tar.bz2 serverdata-91645380fc0f515101b5f36524b5b5f95510c40b.tar.xz serverdata-91645380fc0f515101b5f36524b5b5f95510c40b.zip |
Fix ihclot. Options level was always 0, resulting in minimum possible option bonuses (+1).
Diffstat (limited to 'npc/025-1/ihclot.txt')
-rw-r--r-- | npc/025-1/ihclot.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/025-1/ihclot.txt b/npc/025-1/ihclot.txt index cd093e2b1..10ebb0a44 100644 --- a/npc/025-1/ihclot.txt +++ b/npc/025-1/ihclot.txt @@ -86,13 +86,14 @@ mes ""; if (@menuret == 0) close; + .@level = @menuret; // Ask player to confirm if (!csys_Confirm(.@id)) close; // Perform payment - Zeny-=getPriceInt(.@price, @menuret); + Zeny-=getPriceInt(.@price, .@level); SMITH_TWEAKS+=1; // Apply the bonuses |