TeamLapen / Werewolves

addon mod for Vampirism which add Werewolves
https://wiki.werewolves.dev
GNU Lesser General Public License v3.0
36 stars 12 forks source link

Compatibility with MCA: Reborn #182

Open Cheaterpaul opened 4 months ago

Cheaterpaul commented 4 months ago

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"
},