Skip to content

Commit

Permalink
Creative tabs adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Lykrast committed Aug 5, 2022
1 parent 16d0a73 commit 5602cc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/lykrast/bookwyrms/registry/BWItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ public class BWItems {
public static final DeferredRegister<Item> REG = DeferredRegister.create(ForgeRegistries.ITEMS, BookWyrms.MODID);

static {
//Put those at the start of the creative tab since they're the most likely things to be wanted
spawnEgg = initItem("book_wyrm_spawn_egg", () -> new ForgeSpawnEggItem(BWEntities.bookWyrm, 0x808080, 0xFFF9E0, defP()));
analyzer = initItem("analyzer", () -> new AnalyzerItem(defP().stacksTo(1)));

bookWyrmRaw = initItem("book_wyrm_raw", () -> new Item(defP().food((new FoodProperties.Builder()).nutrition(3).saturationMod(0.3f).meat().build())));
Expand Down Expand Up @@ -55,8 +57,6 @@ public class BWItems {
mutagenDgsUp = initItem("wyrmutagen_digestion_up", () -> new WyrmutagenStat(WyrmutagenHelper.DIGESTION_UP, defP()));
mutagenDgsDown = initItem("wyrmutagen_digestion_down", () -> new WyrmutagenStat(WyrmutagenHelper.DIGESTION_DOWN, defP()));
mutagenStasis = initItem("wyrmutagen_stasis", () -> new WyrmutagenStat(WyrmutagenHelper.STASIS, defP()));

spawnEgg = initItem("book_wyrm_spawn_egg", () -> new ForgeSpawnEggItem(BWEntities.bookWyrm, 0x3D8DC6, 0xFFF9E0, defP()));
}

public static Item.Properties defP() {
Expand Down

0 comments on commit 5602cc1

Please sign in to comment.