Package com.flansmod.common.network.PacketTeamInfo

Examples of com.flansmod.common.network.PacketTeamInfo.PlayerScoreData


         
    RendererLivingEntity.NAME_TAG_RANGE = 64F;
    RendererLivingEntity.NAME_TAG_RANGE_SNEAK = 32F;   
    if(event.entity instanceof EntityPlayer && teamInfo != null && teamInfo.gametype != null && !"No Gametype".equals(teamInfo.gametype))
    {
      PlayerScoreData rendering = teamInfo.getPlayerScoreData(event.entity.getCommandSenderName());
      PlayerScoreData thePlayer = teamInfo.getPlayerScoreData(minecraft.thePlayer.getCommandSenderName());
     
      Team renderingTeam = rendering == null ? Team.spectators : rendering.team.team;
      Team thePlayerTeam = thePlayer == null ? Team.spectators : thePlayer.team.team;
           
      //Do custom skin overrides
View Full Code Here

TOP

Related Classes of com.flansmod.common.network.PacketTeamInfo.PlayerScoreData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.