Commit 79d6af45f148a863a5b7ba0cb7b7348de8db0b72

Authored by zhouhaihai
1 parent ece975b6

bug

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/models/HeroPlugin.lua
... ... @@ -100,7 +100,7 @@ function HeroPlugin.bind(Hero)
100 100 local equipAttrs = self:getRuneEquipAttrs()
101 101  
102 102 for _, attName in pairs(AttsEnumEx) do
103   - attrs[attName] = ((attrs[attName] or 0) + equipAttrs.value[attName]) * (1 + equipAttrs.precent[attName])
  103 + attrs[attName] = ((attrs[attName] or 0) + equipAttrs.value[attName]) * (1 + equipAttrs.precent[attName] / 100)
104 104 end
105 105  
106 106 return attrs
... ...