diff --git a/xtrn/lemons/level.js b/xtrn/lemons/level.js
index be4a8df68e9a66605552983c259d58b40aa3e71e..3f76fee35d4a3d36bbba78965df2666848f62a1d 100644
--- a/xtrn/lemons/level.js
+++ b/xtrn/lemons/level.js
@@ -970,7 +970,7 @@ var Level = function (l, n) {
 
 		if (userInput.mouse !== null) {
 			// If it wasn't a left-click
-			if (userInput.mouse.button != 0) return ret;
+			if (userInput.mouse.button != 0 && !userInput.mouse.press) return ret;
 			// If they clicked inside the statusbar region ...
 			if (userInput.mouse.y >= frames.statusBar.y && userInput.mouse.y <= frames.statusBar.y + 1) {
 				if (userInput.mouse.x < frames.labels[KEY_BOMB].x) {