Fixed typo bug in MinecraftForge.getEntityTrackerInfo
This commit is contained in:
parent
66b3c827cc
commit
aa83f571c2
1 changed files with 1 additions and 1 deletions
|
@ -891,7 +891,7 @@ public class MinecraftForge
|
||||||
{
|
{
|
||||||
if (entry.getKey().isInstance(entity))
|
if (entry.getKey().isInstance(entity))
|
||||||
{
|
{
|
||||||
if (!checkSupers || entry.getKey() == entry.getClass())
|
if (!checkSupers || entry.getKey() == entity.getClass())
|
||||||
{
|
{
|
||||||
return entry.getValue();
|
return entry.getValue();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue