diff options
author | Paul Gilbert | 2018-03-22 22:11:02 -0400 |
---|---|---|
committer | Paul Gilbert | 2018-03-22 22:11:02 -0400 |
commit | 6a3e1297d1e4b661b34807b3967d4f7360b39157 (patch) | |
tree | 36c2b956eda15eb7009dc04ae4506c1106f19981 | |
parent | b7492760aaba046803827021bb56d0b0357a55f0 (diff) | |
download | scummvm-rg350-6a3e1297d1e4b661b34807b3967d4f7360b39157.tar.gz scummvm-rg350-6a3e1297d1e4b661b34807b3967d4f7360b39157.tar.bz2 scummvm-rg350-6a3e1297d1e4b661b34807b3967d4f7360b39157.zip |
XEEN: Fix conditions that prevent characters doing actions
-rw-r--r-- | engines/xeen/character.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/xeen/character.cpp b/engines/xeen/character.cpp index 4fd1c3211b..810c76531e 100644 --- a/engines/xeen/character.cpp +++ b/engines/xeen/character.cpp @@ -454,12 +454,12 @@ bool Character::noActions() { Condition condition = worstCondition(); switch (condition) { - case CURSED: - case POISONED: - case DISEASED: - case INSANE: - case IN_LOVE: - case DRUNK: { + case ASLEEP: + case PARALYZED: + case UNCONSCIOUS: + case DEAD: + case STONED: + case ERADICATED: { Common::String msg = Common::String::format(Res.IN_NO_CONDITION, _name.c_str()); ErrorScroll::show(Party::_vm, msg, Party::_vm->_mode == 17 ? WT_LOC_WAIT : WT_NONFREEZED_WAIT); |