From 0393745c880bb7d3969e90d39776df694335aaf1 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Fri, 22 Mar 2019 23:38:39 -0700 Subject: [PATCH] Added charm descriptor --- core/src/com/riiablo/item/Item.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/com/riiablo/item/Item.java b/core/src/com/riiablo/item/Item.java index 2003c0e1..37423158 100644 --- a/core/src/com/riiablo/item/Item.java +++ b/core/src/com/riiablo/item/Item.java @@ -816,6 +816,8 @@ public class Item extends Actor implements Disposable { if (Item.this.type.is("book")) { add(new Label(Riiablo.string.lookup("InsertScrolls"), font, Riiablo.colors.white)).center().space(SPACING).row(); + } else if (Item.this.type.is("char")) { + add(new Label(Riiablo.string.lookup("ItemExpcharmdesc"), font, Riiablo.colors.white)).center().space(SPACING).row(); } // TODO: This seems a bit hacky, check and see if this is located somewhere (doesn't look like it)