From e8c934ca827b3345d96e68f4f4c7593eac461735 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Fri, 19 Mar 2010 11:20:20 +0000
Subject: [PATCH] allow drop & use item in dongeons

git-svn-id: http://svn.net-core.org/repos/t-engine4@449 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/class/Player.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/game/modules/tome/class/Player.lua b/game/modules/tome/class/Player.lua
index 7590f0fa4e..b1b60ca787 100644
--- a/game/modules/tome/class/Player.lua
+++ b/game/modules/tome/class/Player.lua
@@ -216,7 +216,7 @@ function _M:runCheck()
 end
 
 function _M:doDrop(inven, item)
-	if game.zone.short_name ~= "wilderness" then game.logPlayer(self, "You can not drop on the world map.") return end
+	if game.zone.short_name == "wilderness" then game.logPlayer(self, "You can not drop on the world map.") return end
 	self:dropFloor(inven, item, true, true)
 	self:sortInven()
 	self:useEnergy()
@@ -284,7 +284,7 @@ function _M:playerTakeoff()
 end
 
 function _M:playerUseItem(object, item)
-	if game.zone.short_name ~= "wilderness" then game.logPlayer(self, "You can not use items on the world map.") return end
+	if game.zone.short_name == "wilderness" then game.logPlayer(self, "You can not use items on the world map.") return end
 
 	local use_fct = function(o, item)
 		self.changed = true
-- 
GitLab