Hello all,
I have this method:
Minecraft.getMinecraft().thePlayer.getTeam() for get player's team instance but I want check in which team the player belongs
I would use a simple condition similar at:
if(Minecraft.getMinecraft().thePlayer.getTeam() == methodForGetTeam)
{
}
else if(Minecraft.getMinecraft().thePlayer.getTeam() ==methodForGetSecondTeam)
{
}
hoping to have been explicit