Skip to content

Commit

Permalink
v1.8.5 - Fix sequenced assembly 'in-between' items not having a proce…
Browse files Browse the repository at this point in the history
…ss bar (fixed after almost a year)
  • Loading branch information
DakotaPride committed Jun 14, 2024
1 parent 3ed16f8 commit efa97d5
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -544,9 +544,13 @@ public class GarnishedItems {

public static final ItemEntry<SepiaSignItem> SEPIA_SIGN =
REGISTRATE.item("sepia_sign", SepiaSignItem::new).register();
public static final ItemEntry<SepiaSignItem.Hanging> SEPIA_HANGING_SIGN =
REGISTRATE.item("sepia_hanging_sign", SepiaSignItem.Hanging::new).register();

public static final ItemEntry<NutSignItem> NUT_SIGN =
REGISTRATE.item("nut_sign", NutSignItem::new).register();
public static final ItemEntry<NutSignItem.Hanging> NUT_HANGING_SIGN =
REGISTRATE.item("nut_hanging_sign", NutSignItem.Hanging::new).register();

public static final ItemEntry<NutBoatItem> NUT_BOAT =
REGISTRATE.item("nut_boat", NutBoatItem::new).register();
Expand Down

0 comments on commit efa97d5

Please sign in to comment.