Fixed player names not displaying

This commit is contained in:
Anuken
2018-07-12 18:58:02 -04:00
parent 454267455b
commit 3d536aa28d

View File

@@ -245,11 +245,11 @@ public class Renderer extends RendererModule{
fog.draw(); fog.draw();
} }
batch.begin(); Graphics.beginCam();
EntityDraw.setClip(false); EntityDraw.setClip(false);
drawAndInterpolate(playerGroup, p -> !p.isDead() && !p.isLocal, Player::drawName); drawAndInterpolate(playerGroup, p -> !p.isDead() && !p.isLocal, Player::drawName);
EntityDraw.setClip(true); EntityDraw.setClip(true);
batch.end(); Graphics.end();
} }
private void drawFlyerShadows(){ private void drawFlyerShadows(){