diff options
Diffstat (limited to 'engines/mads/nebular/nebular_scenes7.cpp')
-rw-r--r-- | engines/mads/nebular/nebular_scenes7.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/mads/nebular/nebular_scenes7.cpp b/engines/mads/nebular/nebular_scenes7.cpp index 94bb7b66b2..385141d318 100644 --- a/engines/mads/nebular/nebular_scenes7.cpp +++ b/engines/mads/nebular/nebular_scenes7.cpp @@ -1785,9 +1785,8 @@ void Scene706::actions() { } if (_action.isAction(VERB_PUT, 0x344) && _game._objects.isInInventory(_game._objects.getIdFromDesc(_action._activeAction._objectNameId))) { - warning("Replace the next if when the function is implemented"); - warning("if (sub_13D46(_game._objects.getIdFromDesc(_action._activeAction._objectNameId), 0xA))"); - if (true) + int objectId = _game._objects.getIdFromDesc(_action._activeAction._objectNameId); + if (_game._objects[objectId].hasQuality(10)) _vm->_dialogs->show(70626); else _vm->_dialogs->show(70627); |