Mojira Archive
MC-78321

Player is not rendered if alternative view entity is set

In RenderPlayer
mc does if (!abstractClientPlayer.isUser() || this.renderManager.livingPlayer == abstractClientPlayer)
to determine if it should render the entity
but livingPlayer is set to the view entity in the render cache method,
becuase of this, it doesn't render the player

our solution for our mod is currently this, but it would be better to get this patched in base
boolean cameraIsPlayer = Minecraft.getMinecraft().getRenderViewEntity() instanceof EntityPlayer;
if (!cameraIsPlayer || !abstractClientPlayer.isUser() || this.renderManager.livingPlayer == abstractClientPlayer)

Invalid

nope.avi

2015-03-03, 09:01 PM

2015-03-03, 09:04 PM

2015-03-03, 09:04 PM

0

1

Unconfirmed

Minecraft 1.8.1

-