Fixed fishing skill not working.

This commit is contained in:
GJ 2012-02-13 10:26:51 -05:00
parent 58dc45d344
commit bda72f28ed

View File

@ -84,7 +84,7 @@ public class mcPlayerListener implements Listener
{
if(event.getState() == State.CAUGHT_FISH)
{
if(event.getCaught() instanceof Item)
if(event.getCaught() instanceof org.bukkit.entity.Item)
{
Fishing.processResults(event);
}