diff options
-rw-r--r-- | npc/craft/options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index f8e00b128..947a5c8ca 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -514,7 +514,7 @@ function script csys_Apply { .@base+=40000; // This _lowers_ base based on how many options you're using (max -30%) // 5% per option enabled. One is always enabled so... - .@base-=limit(0, 30000, bitmask_count(CRAFTSYS_CURRENT)*5000); + .@base-=limit(1000, 30000, bitmask_count(CRAFTSYS_CURRENT)*5000); // Lower based on min. tier (max -10%) // Note higher tier inheirts all of previous penalties .@base-=(CRAFTSYS_CURRENT >= CRGROUP_ATK ? 2500 : 0); // 1st tier |