#Crash with Bits and Chisels

1 messages · Page 1 of 1 (latest)

trim meadow
#

Minecraft version: 1.20.1
Fabric version: 0.14.22
Axiom Version: 1.3.2
Other Mod in Question: Bits and Chisels, v. 2.7.3
Crash Report: https://pastebin.com/LUXt9yxH
Potential Solution:
It would appear that in your MapBlockAndTintGetter you are implementing the BlockRenderView but not the RenderAttachedBlockView alongside it. This is something that is expected by many mods when adjusting anything to do with the BlockRenderView. Therefore, when doing this, you'll need to implement RenderAttachedBlockView alongside the BlockRenderView and to mark the requisite methods with @Override such as getBrightness and the like. If you have any methods that are using in the same way that it is already implemented, you can remove them so that it doesn't cause any issues.

ember totem
#

Alright I switched it over

#

There's nothing extra I need to implement, it's just the interface

trim meadow
ember totem
#

RenderAttachedBlockView just extends BlockAndTintGetter

#

And the one method it adds has a default impl

#

So I literally just changed BlockAndTintGetter to RenderAttachedBlockView

trim meadow
#

Ohhhhh

#

I gotcha

#

Nice