Skip to content

Commit

Permalink
Fix #104
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Jul 16, 2018
1 parent a19ba61 commit 0a5d12e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/me/modmuss50/rebornstorage/RebornStorage.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ public void preinit(FMLPreInitializationEvent event) {
API.instance().getNetworkNodeRegistry().add(MULTI_BLOCK_ID, (tag, world, pos) -> {
CraftingNode node = new CraftingNode(world, pos);
StackUtils.readItems(node.patterns, 0, tag);
if (API.instance().getOneSixMigrationHelper().migratePatternInventory(node.patterns)) {
node.markDirty();
}
return node;
});

Expand Down

0 comments on commit 0a5d12e

Please sign in to comment.