Fix a typesig that was broken

This commit is contained in:
cpw 2015-11-21 13:23:20 -05:00
parent c4742aadbc
commit 059ba15b5a

View file

@ -22,7 +22,7 @@
+ * @param entity the Entity
+ * @return all players tracking the Entity
+ */
+ public Set<net.minecraft.entity.player.EntityPlayer> getTrackingPlayers(Entity entity)
+ public Set<? extends net.minecraft.entity.player.EntityPlayer> getTrackingPlayers(Entity entity)
+ {
+ EntityTrackerEntry entry = (EntityTrackerEntry) trackedEntityHashTable.lookup(entity.getEntityId());
+ if (entry == null)