From 685c999425e36566684fc602001acbb1c8ba8e17 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Sat, 23 Mar 2019 01:35:32 -0700 Subject: [PATCH] Fixed class skill levels format string --- core/src/com/riiablo/item/Stat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/riiablo/item/Stat.java b/core/src/com/riiablo/item/Stat.java index 61849512..d6d2fc78 100644 --- a/core/src/com/riiablo/item/Stat.java +++ b/core/src/com/riiablo/item/Stat.java @@ -538,7 +538,7 @@ public enum Stat { builder .append(PLUS).append(value) .append(SPACE) - .append(CharacterClass.get(param).entry().StrAllSkills); + .append(Riiablo.string.lookup(CharacterClass.get(param).entry().StrAllSkills)); return builder.toString(); case 14: // %s %s | +1 to Fire Skills (Sorceress Only) value = this.value;