mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-20 00:41:12 +00:00
XEEN: Fix using 1,2,3 in combat to target specific creatures
This commit is contained in:
parent
5b839c5382
commit
92cfff522f
@ -1156,7 +1156,7 @@ Common::String Combat::getMonsterDescriptions() {
|
||||
|
||||
if (_attackDurationCtr == 2 && _attackMonsters[2] != -1) {
|
||||
_monster2Attack = _attackMonsters[2];
|
||||
} if (_attackDurationCtr == 1 && _attackMonsters[1] != -1) {
|
||||
} else if (_attackDurationCtr == 1 && _attackMonsters[1] != -1) {
|
||||
_monster2Attack = _attackMonsters[1];
|
||||
} else {
|
||||
_monster2Attack = _attackMonsters[0];
|
||||
|
Loading…
Reference in New Issue
Block a user