aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index 8d15bcd..6a68cc0 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -1035,8 +1035,10 @@ EXIT:
} else {
// left click uses item
if (e.button.button & SDL_BUTTON_LEFT) {
- player->inv->currentAddInteract(currentWorld->getMobs());
- player->inv->useCurrent();
+ if ((m = currentWorld->getNearMob(*player)) != nullptr) {
+ player->inv->currentAddInteract(m);
+ player->inv->useCurrent();
+ }
}
}