diff options
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -964,8 +964,11 @@ EXIT: dialogAdvance(); } else { // left click uses item - if (e.button.button & SDL_BUTTON_LEFT) + if (e.button.button & SDL_BUTTON_LEFT) { + player->inv->currentAddInteract(currentWorld->getMobs()); player->inv->useCurrent(); + } + } if(mouse.x > player->loc.x && mouse.x < player->loc.x + player->width && |