Moved PLAYER_LIST event inside display check.

This commit is contained in:
rhilenova 2013-09-30 20:06:04 -04:00
parent e842fd95b4
commit 5e998776cb
1 changed files with 2 additions and 2 deletions

View File

@ -733,12 +733,12 @@ public class GuiIngameForge extends GuiIngame
protected void renderPlayerList(int width, int height)
{
if (pre(PLAYER_LIST)) return;
ScoreObjective scoreobjective = this.mc.theWorld.getScoreboard().func_96539_a(0);
NetClientHandler handler = mc.thePlayer.sendQueue;
if (mc.gameSettings.keyBindPlayerList.pressed && (!mc.isIntegratedServerRunning() || handler.playerInfoList.size() > 1 || scoreobjective != null))
{
if (pre(PLAYER_LIST)) return;
this.mc.mcProfiler.startSection("playerList");
List players = handler.playerInfoList;
int maxPlayers = handler.currentServerMaxPlayers;
@ -805,8 +805,8 @@ public class GuiIngameForge extends GuiIngame
zLevel -= 100.0F;
}
}
post(PLAYER_LIST);
}
post(PLAYER_LIST);
}
protected void renderHealthMount(int width, int height)