Release 1.3.23

- Added item enchanting system
- Added support for more helmet enchantments
- Added support for The Wise Oak's penetration
- Corrected Lycosidae's base
- Fixed issue with Blood Rage's quality bonus and the new buff handling code
This commit is contained in:
Openarl
2017-03-31 18:44:03 +10:00
parent 34b5cd2091
commit e246d67519
16 changed files with 2155 additions and 198 deletions

View File

@@ -108,7 +108,11 @@ function modLib.formatValue(value)
if i > 1 then
ret = ret .. "/"
end
ret = ret .. string.format("%s=%s", paramName, tostring(value[paramName]))
if paramName == "mod" then
ret = ret .. string.format("%s=[%s]", paramName, modLib.formatMod(value[paramName]))
else
ret = ret .. string.format("%s=%s", paramName, tostring(value[paramName]))
end
end
return "{"..ret.."}"
end