Recent content by KnusperflockeOfDeath

  • After careful consideration and due to limited usage, we’ve made the decision to discontinue the PaperMC forums. Moving forward, we recommend using Hangar for plugin uploads, and for all other community discussions and support, please join us on Discord.
  1. KnusperflockeOfDeath

    Question [1.18.2] Custom heads with BlockPopulator apears as Steve head

    After I post this I recognized the failure. I missed region.setBlockState(pos, skull); because i thought the state is a reference and not a copy.
  2. KnusperflockeOfDeath

    Question [1.18.2] Custom heads with BlockPopulator apears as Steve head

    I try to generate custom trees and other structures with custom heads. Here is the code: BlockState state = region.getBlockState(pos); // CompoundTag from net.minecraft.nbt with mojang-mappings CompoundTag nbt = stateData[x + z * size.getBlockX() + y * size.getBlockX() * size.getBlockZ()]; if...