wisp-forest / alloy-forgery

Alloy smelter mod for Fabric
MIT License
44 stars 21 forks source link

Crash 1.18.2 (I found the problem for you) please update it #44

Closed SpyMan10 closed 2 years ago

SpyMan10 commented 2 years ago

AlloyForgeryItemGroup.java:26

    @Override
    public ItemStack createIcon() {
        return this.controllerCache != null && this.controllerCache.isEmpty() ? Items.BRICKS.getDefaultStack() : this.controllerCache.get(0);
    }

if this.controllerCache is null, the default case is this.controllerCache.get(0) but if the controllerCache is null, the method 'get' cannot be used