File tree Expand file tree Collapse file tree
fabric/src/main/java/com/evandev/tolerable_creepers
neoforge/src/main/java/com/evandev/tolerable_creepers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,12 +43,17 @@ public void onInitialize() {
4343
4444 ItemGroupEvents .modifyEntriesEvent (CreativeModeTabs .COMBAT ).register (entries -> {
4545 entries .accept (TCItems .MISCHIEF_ARROW .get ());
46+ entries .accept (TCItems .SPORE_BARREL .get ());
4647 });
4748
4849 ItemGroupEvents .modifyEntriesEvent (CreativeModeTabs .INGREDIENTS ).register (entries -> {
4950 entries .accept (TCItems .CREEPER_SPORES .get ());
5051 });
5152
53+ ItemGroupEvents .modifyEntriesEvent (CreativeModeTabs .SPAWN_EGGS ).register (entries -> {
54+ entries .accept (TCItems .CREEPIE_SPAWN_EGG .get ());
55+ });
56+
5257 FabricDefaultAttributeRegistry .register (TCEntities .CREEPIE .get (), Creepie .createAttributes ());
5358 CompostingChanceRegistry .INSTANCE .add (TCItems .CREEPER_SPORES .get (), 0.65F );
5459
Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ private void registerAttributes(EntityAttributeCreationEvent event) {
108108 private void addCreativeTabItems (BuildCreativeModeTabContentsEvent event ) {
109109 if (event .getTabKey () == CreativeModeTabs .COMBAT ) {
110110 event .accept (TCItems .MISCHIEF_ARROW .get ());
111+ event .accept (TCItems .SPORE_BARREL .get ());
111112
112113 if (ModList .get ().isLoaded ("nomansland" ) && TCNeoForgeRegistries .SPORE_BOMB != null ) {
113114 event .accept (TCNeoForgeRegistries .SPORE_BOMB .get ());
You can’t perform that action at this time.
0 commit comments