Play online soon

Download links available on Patreon

Domination Mansion v0.3.5

The newest patreon version of Domination Mansion! Public version will release on the 21st of December.

New Content:

  • Meet the second-floor boss Felicity!
  • Extended cleansing scenes with Sandra (3 scenes) and Gabriel (2 scenes).
  • The return of Sydney for players that choose the Friend, Ally and Mistress path, alongside a new battle.
  • New encounter with Bonny and Kimmy continuing both of their stories.


Game changes:

  • Isha’s mark gets removed once your transformation is over and she will no longer try to transform you again if you fight her.
  • The player can now change their pronouns and makeup when looking in the mirror.
  • The player can now level up in the second floor by talking to Azreal.
  • Fixed a ton of bugs left over from version 0.3.3.


Tl_skin_cape_forge -

@Mixin(PlayerRenderer.class) public abstract class MixinPlayerRenderer @Redirect(method = "renderRightArm", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/renderer/entity/PlayerRenderer;bindTexture(Lnet/minecraft/util/ResourceLocation;)V")) private void overrideSkinTexture(PlayerRenderer instance, ResourceLocation original) ResourceLocation custom = TLTextureManager.getPlayerSkin(); if (custom != null) instance.bindTexture(custom); else instance.bindTexture(original);

TLauncher integration → many users on TLauncher already have skin/cape systems; this mod brings that functionality to official Forge + premium Minecraft. 4. Mod Architecture (Reverse-engineered structure) Typical class structure (inferred): tl_skin_cape_forge

1. Core Identity & Purpose tl_skin_cape_forge is almost certainly a Minecraft Forge mod that allows players to equip custom skins and capes directly through the mod's system, bypassing Mojang's official (and often limited) skin/cape servers. @Mixin(PlayerRenderer