petrolpark / Destroy

A chemistry-themed add-on to the Minecraft mod, Create
https://modrinth.com/mod/destroy
94 stars 40 forks source link

New mixin for Embeddium support #447

Closed Penta0308 closed 1 month ago

Penta0308 commented 1 month ago

Embeddium's src/main/java/me/jellysquid/mods/sodium/client/world/WorldSlice.java has

    @Override
    public int getBlockTint(BlockPos pos, ColorResolver resolver) {
        return this.biomeColors.getColor(resolver, pos.getX(), pos.getY(), pos.getZ());
    }

Overwrite the change with mixin.

Addresses https://github.com/petrolpark/Destroy/issues/440

petrolpark commented 1 month ago

Cool, thanks a lot.