From 0f9dff4560ed4eac07b779375d94a6a3c891d710 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 21 Jun 2021 20:35:02 -0400 Subject: [PATCH] v0.9.3c: fixed upgrading heightened senses not calling observe --- .../shatteredpixeldungeon/actors/hero/Talent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java index e7f9a253a..56dc1f7ff 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java @@ -263,7 +263,7 @@ public enum Talent { } } - if (talent == FARSIGHT){ + if (talent == HEIGHTENED_SENSES || talent == FARSIGHT){ Dungeon.observe(); } }