Browse Source

Fixed fishing skill not working.

GJ 13 năm trước cách đây
mục cha
commit
bda72f28ed

+ 1 - 1
src/main/java/com/gmail/nossr50/listeners/mcPlayerListener.java

@@ -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);
 				}