diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-10-04 23:42:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-10-04 23:42:07 +0300 |
commit | 16be27ddb973b5c2dedb6b5b63083086984c2139 (patch) | |
tree | 720747e6cb6e9f61b7e8297252582982a834ad02 /src/gui/windows/inventorywindow.cpp | |
parent | b3145fb5f1ea419d9b3ee60450866fd199ee1103 (diff) | |
download | plus-16be27ddb973b5c2dedb6b5b63083086984c2139.tar.gz plus-16be27ddb973b5c2dedb6b5b63083086984c2139.tar.bz2 plus-16be27ddb973b5c2dedb6b5b63083086984c2139.tar.xz plus-16be27ddb973b5c2dedb6b5b63083086984c2139.zip |
Move npcinputstate into enums directory.
Diffstat (limited to 'src/gui/windows/inventorywindow.cpp')
-rw-r--r-- | src/gui/windows/inventorywindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index 40f276c89..05bcda0ae 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -1054,7 +1054,7 @@ void InventoryWindow::moveItemToCraft(const int craftSlot) NpcDialog *const dialog = npcHandler->getCurrentNpcDialog(); if (dialog && - dialog->getInputState() == NpcDialog::NPC_INPUT_ITEM_CRAFT) + dialog->getInputState() == NpcInputState::ITEM_CRAFT) { if (item->getQuantity() > 1 && !inputManager.isActionActive(InputAction::STOP_ATTACK)) |