diff --git a/core/src/com/riiablo/codec/excel/ItemEntry.java b/core/src/com/riiablo/codec/excel/ItemEntry.java index 8ebbdd1f..61aad327 100644 --- a/core/src/com/riiablo/codec/excel/ItemEntry.java +++ b/core/src/com/riiablo/codec/excel/ItemEntry.java @@ -30,4 +30,5 @@ public class ItemEntry extends Excel.Entry { @Column public boolean stackable; @Column public boolean useable; @Column public String usesound; + @Column public int quest; } diff --git a/core/src/com/riiablo/item/Item.java b/core/src/com/riiablo/item/Item.java index fd77fba2..a8cef271 100644 --- a/core/src/com/riiablo/item/Item.java +++ b/core/src/com/riiablo/item/Item.java @@ -594,7 +594,7 @@ public class Item extends Actor implements Disposable { case LOW: case NORMAL: case HIGH: - if ((flags & RUNEWORD) == RUNEWORD) + if ((flags & RUNEWORD) == RUNEWORD || base.quest > 0) name.setColor(Riiablo.colors.gold); if ((flags & (ETHEREAL|SOCKETED)) != 0) type.setColor(Riiablo.colors.grey);