Compatibility with MCA: Reborn
Cheaterpaul opened this issue ยท 0 comments
Introduction
MCA Reborn has a feature to replace the player model with a villager like model which conflicts with werewolf player transforming into werewolf form
Problem
MCA Reborn uses non compatible ways to disable the rendering of models for player, thus removing the Werewolf model from showing and the villager models as well, because werewolves disables them in werewolf form. Resulting in nothing being rendered.
Solution
MCA Reborn offers a config option to disable their villager model check, allowing the werewolf model to be rendered again, to the negative effect that no other MCA Reborn player effects are rendered.
You can find the config option playerRendererBlacklist
in their mca.json
config file. There you need to add an additional entry for "werewolves": "block_player"
to the end of the list
The option should look like this:
"playerRendererBlacklist": {
"epicfight": "all",
"firstpersonmod": "arms",
"firstperson": "arms",
"morph": "arms",
"werewolves": "block_player"
},