diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-27 16:33:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-27 16:33:53 -0300 |
commit | 355b4adb7c76bf5af68b1d98eca52c4cf6ab1c03 (patch) | |
tree | c4e779f74c2dc3982b3dba54a23fc41f6aaf08e0 /wiki/redesign.py | |
parent | 35140b243839a27c8ad93f309852ae234dd53262 (diff) | |
download | tools-355b4adb7c76bf5af68b1d98eca52c4cf6ab1c03.tar.gz tools-355b4adb7c76bf5af68b1d98eca52c4cf6ab1c03.tar.bz2 tools-355b4adb7c76bf5af68b1d98eca52c4cf6ab1c03.tar.xz tools-355b4adb7c76bf5af68b1d98eca52c4cf6ab1c03.zip |
Over100 mobs does not receive HP nerf if they are ranged
Diffstat (limited to 'wiki/redesign.py')
-rwxr-xr-x | wiki/redesign.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wiki/redesign.py b/wiki/redesign.py index 8c79201..cf8d462 100755 --- a/wiki/redesign.py +++ b/wiki/redesign.py @@ -684,7 +684,7 @@ def mb_stgen(mb): if "slime" in mb.name.lower(): lhp*=0.6 hhp*=0.6 - if ar > 1: + if ar > 1 and not OVER100: lhp*=0.9 hhp*=0.9 |