diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-06 13:24:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-06 13:24:59 -0300 |
commit | 247ad6f29c2537d0a251c018ae9e87d318125f96 (patch) | |
tree | 8ae6430c99270806a7551ffa3272e733a8f5ee0f /npc | |
parent | 4b43d6eb9b7eae6948227ba2bde34282daf79eed (diff) | |
download | serverdata-247ad6f29c2537d0a251c018ae9e87d318125f96.tar.gz serverdata-247ad6f29c2537d0a251c018ae9e87d318125f96.tar.bz2 serverdata-247ad6f29c2537d0a251c018ae9e87d318125f96.tar.xz serverdata-247ad6f29c2537d0a251c018ae9e87d318125f96.zip |
Move STR/INT bonuses to rule 4 instead of rule 5 (csys_Multiplier)
Diffstat (limited to 'npc')
-rw-r--r-- | npc/craft/options.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index a452f2e75..f18b1c449 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -350,13 +350,13 @@ function script csys_Multiplier { case IOPT_WALKSPEED: case IOPT_RICHNESS: return 2; + case VAR_STRAMOUNT: case VAR_AGIAMOUNT: - case VAR_LUKAMOUNT: + case VAR_INTAMOUNT: case VAR_DEXAMOUNT: + case VAR_LUKAMOUNT: return 4; - case VAR_STRAMOUNT: case VAR_VITAMOUNT: - case VAR_INTAMOUNT: case HP_DRAIN: case SP_DRAIN: case IOPT_DOUBLEATTACK: |