v0.3.5: fixed a couple artifact bugs

This commit is contained in:
Evan Debenham 2016-04-18 23:51:08 -04:00
parent 1882bd4640
commit 13df6a61f0
2 changed files with 3 additions and 1 deletions

View File

@ -168,7 +168,7 @@ public class Bones {
}
}
if (item.isUpgradable()) {
if (item.isUpgradable() || item instanceof Artifact) {
item.cursed = true;
item.cursedKnown = true;
if (item.isUpgradable()) {

View File

@ -89,6 +89,8 @@ public class TalismanOfForesight extends Artifact {
GLog.p( Messages.get(this, "scry") );
updateQuickslot();
Buff.affect(hero, Awareness.class, Awareness.DURATION);
Dungeon.observe();
}