diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-12-16 11:51:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-12-16 11:51:36 -0300 |
commit | 6066a493f22b3d462c5eea3e395672768b9d5e61 (patch) | |
tree | bc1bb89715114be246a023083407173a8ad02df1 /npc | |
parent | 20eb6b22973c08b05b1a83340549ebfba7d8baae (diff) | |
download | serverdata-6066a493f22b3d462c5eea3e395672768b9d5e61.tar.gz serverdata-6066a493f22b3d462c5eea3e395672768b9d5e61.tar.bz2 serverdata-6066a493f22b3d462c5eea3e395672768b9d5e61.tar.xz serverdata-6066a493f22b3d462c5eea3e395672768b9d5e61.zip |
The water bonus should apply not only on the fixed bonus as you need multiple of
Diffstat (limited to 'npc')
-rw-r--r-- | npc/017-3/chagashroom.txt | 2 | ||||
-rw-r--r-- | npc/024-9/sake.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/017-3/chagashroom.txt b/npc/017-3/chagashroom.txt index 552dd14af..164a7cb85 100644 --- a/npc/017-3/chagashroom.txt +++ b/npc/017-3/chagashroom.txt @@ -120,7 +120,7 @@ L_Main: REDWINE_AMMO=.@glass_count; REDWINE_DATE=gettimetick(2); REDWINE_DONE=gettimetick(2)-.@bonus+.mintime; - REDWINE_DONE+=.cuptime*REDWINE_AMMO; + REDWINE_DONE+=(.cuptime-(.@bonus/3))*REDWINE_AMMO; break; case 3: close; diff --git a/npc/024-9/sake.txt b/npc/024-9/sake.txt index c93bcf5ca..2ff3e2892 100644 --- a/npc/024-9/sake.txt +++ b/npc/024-9/sake.txt @@ -130,7 +130,7 @@ L_Main: DWARVEN_AMMO=.@glass_count; DWARVEN_DATE=gettimetick(2); DWARVEN_DONE=gettimetick(2)-.@bonus+.mintime; - DWARVEN_DONE+=.cuptime*DWARVEN_AMMO; + DWARVEN_DONE+=(.cuptime-(.@bonus/3))*DWARVEN_AMMO; break; case 3: close; |