v2.1.2: fixed an error with feint caused by v2.1.1

This commit is contained in:
Evan Debenham
2023-06-14 12:30:33 -04:00
parent aede0d6a48
commit 8af7cc63e4

View File

@@ -90,7 +90,7 @@ public class Feint extends ArmorAbility {
return;
}
if (!Dungeon.level.solid[target] || Actor.findChar(target) != null){
if (Dungeon.level.solid[target] || Actor.findChar(target) != null){
GLog.w(Messages.get(this, "bad_location"));
return;
}