diff --git a/src/shared/public/hero.ts b/src/shared/public/hero.ts index c9319b7..0cf2ff2 100644 --- a/src/shared/public/hero.ts +++ b/src/shared/public/hero.ts @@ -318,7 +318,7 @@ export class HeroShared { static amendAttr(buff: k_v) { for (let k in buff) { if (typeof buff[k] != 'number') continue; - if (k.indexOf('pro') != -1 || k.indexOf('drop') != -1) continue; + if (k.indexOf('pro') != -1 || k.indexOf('drop') != -1 || k=='addhp') continue; buff[k] = Math.floor(buff[k]); } }