Skip to content

Commit

Permalink
Fix craft listener.
Browse files Browse the repository at this point in the history
  • Loading branch information
aufdemrand committed May 23, 2013
1 parent b2ee615 commit e2af97c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -105,7 +105,7 @@ public void listenItem(InventoryClickEvent event)
dB.echoDebug("2: " + item.getType().name());

//if item isnt a required item, then return
if (!items.contains(item)) return;
if (!items.contains(item.getType().toString())) return;

dB.echoDebug("3");

Expand Down

0 comments on commit e2af97c

Please sign in to comment.