aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/debugger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/lure/debugger.cpp')
-rw-r--r--engines/lure/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/debugger.cpp b/engines/lure/debugger.cpp
index bf7793a016..70781e0f29 100644
--- a/engines/lure/debugger.cpp
+++ b/engines/lure/debugger.cpp
@@ -215,7 +215,7 @@ bool Debugger::cmd_giveItem(int argc, const char **argv) {
if (itemHotspot == NULL) {
DebugPrintf("The specified item does not exist\n");
- } else if ((itemNum < 0x408) || (itemNum >= 0x2710)) {
+ } else if (itemNum < 0x408) {
DebugPrintf("The specified item number is not an object\n");
} else if ((charNum < PLAYER_ID) || (charNum >= 0x408) ||
(charHotspot == NULL)) {