Skip to content

Commit

Permalink
Made addon slots only hold 1 item
Browse files Browse the repository at this point in the history
  • Loading branch information
Buuz135 committed Jun 10, 2021
1 parent 279f681 commit bd27659
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ public boolean hasAugmentInstalled(IAugmentType augmentType) {

public IFactory<InventoryComponent<T>> getAugmentFactory() {
return () -> new SidedInventoryComponent<T>("augments", 180, 11, 4, 0)
.disableFacingAddon()
.setColor(DyeColor.PURPLE)
.disableFacingAddon()
.setColor(DyeColor.PURPLE)
.setSlotLimit(1)
.setRange(1, 4);
}

Expand Down

0 comments on commit bd27659

Please sign in to comment.