Skip to content
Snippets Groups Projects
Commit 7f86595f authored by dg's avatar dg
Browse files

Fixed dual wield trick abuse

git-svn-id: http://svn.net-core.org/repos/t-engine4@4713 51575b47-30f0-44d4-a5cc-537603b46e54
parent 693f7b37
No related branches found
No related tags found
No related merge requests found
......@@ -751,7 +751,7 @@ function _M:hotkeyInventory(name)
Dialog:simplePopup("Item not found", "You do not have any "..name..".")
else
-- Wear it ??
if o:wornInven() and not o.wielded then
if o:wornInven() and not o.wielded and inven == self.INVEN_INVEN then
if not o.use_no_wear then
self:doWear(inven, item, o)
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment