diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-06-28 16:13:15 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-06-28 16:13:15 -0300 |
commit | 0b8687bdeb02e38dc37808e7e9082c90294dc530 (patch) | |
tree | 91df1818a296b56ce8ef805cc12301eec555faec /npc | |
parent | 1e7fc8cad76c6cecfc4a91024201241953f9f344 (diff) | |
download | serverdata-0b8687bdeb02e38dc37808e7e9082c90294dc530.tar.gz serverdata-0b8687bdeb02e38dc37808e7e9082c90294dc530.tar.bz2 serverdata-0b8687bdeb02e38dc37808e7e9082c90294dc530.tar.xz serverdata-0b8687bdeb02e38dc37808e7e9082c90294dc530.zip |
[skip ci] Fix bogus instruction
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/mobpoint.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt index 1a5d59e3b..f7d6b7880 100644 --- a/npc/functions/mobpoint.txt +++ b/npc/functions/mobpoint.txt @@ -50,7 +50,7 @@ function script mobpoint { } // Your intelligence correction, makes it vary up to 50% - .@intf = .@intf + 2000 / 2; + .@intf = (.@intf + 2000) / 2; .@addval = .@addval * .@intf / 990; // use 990 instead of 1000 (pro ludio) // Sanitization (don't allow negative mobpoint gain) |