Closed SpyMan10 closed 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
AlloyForgeryItemGroup.java:26
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