Fix a typesig that was broken
This commit is contained in:
parent
c4742aadbc
commit
059ba15b5a
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue