KINGDOM: Fix logic error in getUserInput

You can now pick up the spell of traveling.
This commit is contained in:
Thomas Fach-Pedersen 2020-06-06 23:16:40 +02:00
parent fcccb2b8c3
commit a01c28e475

View File

@ -993,7 +993,7 @@ void KingdomGame::getUserInput() {
_loopFlag = true;
}
if (_userInput == 0x42B && _logic->_statPlay == 53 && _gameMode == 0) {
if (_userInput == 0x42B && _logic->_statPlay != 53 && _gameMode == 0) {
_logic->_oldStatPlay = _logic->_statPlay;
_logic->_statPlay = 900;
_loopFlag = true;