You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like easier compatibility with other mods, without them needing to have their own accessors that need to work around this mod.
Description
This mod has the feature to increase the size of shulkers. In doing so, it needs the mixin ShulkerBoxBlockEntityMixin to modify various functions and sizes. The base class ShulkerBoxBlockEntity has a public constant called INVENTORY_SIZE that isn't being set by the mod. I would like to see it set to whatever the current configs allow.
Other information
I'm requesting this because of an issue opened for my own mod Simple Shulker Preview: Issue here.
I'm working with ItemStack objects rather than ShulkerBoxBlockEntity objects, so cannot directly use the size() function that is modified by your mod. Instead, I rely on the public static final int INVENTORY_SIZE;
The text was updated successfully, but these errors were encountered:
Motivation
I would like easier compatibility with other mods, without them needing to have their own accessors that need to work around this mod.
Description
This mod has the feature to increase the size of shulkers. In doing so, it needs the mixin ShulkerBoxBlockEntityMixin to modify various functions and sizes. The base class
ShulkerBoxBlockEntity
has a public constant calledINVENTORY_SIZE
that isn't being set by the mod. I would like to see it set to whatever the current configs allow.Other information
I'm requesting this because of an issue opened for my own mod Simple Shulker Preview: Issue here.
I'm working with ItemStack objects rather than ShulkerBoxBlockEntity objects, so cannot directly use the
size()
function that is modified by your mod. Instead, I rely on thepublic static final int INVENTORY_SIZE;
The text was updated successfully, but these errors were encountered: