MrCrayfish's Furniture Mod (Legacy)

MrCrayfish's Furniture Mod (Legacy)

96M Downloads

Crash when placing mirror

Liiw opened this issue ยท 5 comments

commented

Hello!

I was playing on a private spongeforge server and when I placed the mirror from your mod, the client crashed. Upon relogging to the world, client crashed again. I examined the crash report and noticed that there is probably an issue with AtomicStryker's Infernal Mobs. I am attaching the crash report for your viewing:

crash-2017-03-26_05.47.27-client.txt

commented

Did you ever test what would happen if you just used infernal mobs and crayfish's furniture mod?

commented

Hello again!

No I have not tested this yet. I will try it next time I update the server.

commented

I've just had this crash too. It is as Liiw describes it. I place the mirror block down, then my client freezes before crashing.
Here is my crash report of this incident.
crash-2017-07-23_18.40.54-client.txt
Hope this helps to find the cause behind this.

commented

I've discovered the problem. It is that mods are not checking if the render view entity is actually an EntityLivingBase. Basically for the mirror to work, I need to be able to capture what the mirror is seeing, that requires changing the view entity to essentially a dummy entity. I then capture that view as a GL texture and render it as a TESR.

It should be noted that the variable Minecraft.renderViewEntity is declared as Entity. Meaning that any entity can be the render view. The mods causing the crash have assumed that the render view entity is always an EntityLivingBase, therefore causing the ClassCastException if it's not an EnittyLivingBase which my dummy mirror entity is not. I would follow up with the mod authors into adding a check,

commented

Seems to have been fixed in this PR Growlith1223/ArsMagica2#305