Proceeding with DefenceTrait adjustments.

This commit is contained in:
MobiusDevelopment
2019-07-14 22:14:43 +00:00
parent c248b6ff85
commit 967476c7b3
36 changed files with 72 additions and 72 deletions

View File

@@ -45,7 +45,7 @@ public final class AttackTrait extends AbstractEffect
for (Entry<String, Object> param : params.getSet().entrySet())
{
_attackTraits.put(TraitType.valueOf(param.getKey()), (Float.parseFloat((String) param.getValue()) / 100) + 1);
_attackTraits.put(TraitType.valueOf(param.getKey()), Float.parseFloat((String) param.getValue()) / 100);
}
}