-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cbceeb
commit f631257
Showing
4 changed files
with
27 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/main/java/dev/zenithknight/mcmods/expandeddata/ExpandedData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,24 @@ | ||
package dev.zenithknight.mcmods.expandeddata; | ||
|
||
import net.fabricmc.api.ModInitializer; | ||
//import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; | ||
//import net.minecraft.block.Block; | ||
//import net.minecraft.block.Blocks; | ||
//import net.minecraft.block.DispenserBlock; | ||
//import net.minecraft.block.dispenser.BlockPlacementDispenserBehavior; | ||
//import net.minecraft.block.dispenser.ShearsDispenserBehavior; | ||
//import net.minecraft.item.BlockItem; | ||
//import net.minecraft.item.Item; | ||
//import net.minecraft.item.Items; | ||
//import net.minecraft.registry.Registries; | ||
//import net.minecraft.registry.Registry; | ||
//import net.minecraft.util.Identifier; | ||
|
||
public class ExpandedData implements ModInitializer { | ||
@Override | ||
public void onInitialize() { | ||
System.out.println("Initialized Expanded Data mod!"); | ||
// DispenserBlock.registerBehavior(Blocks.CAKE.asItem(), new BlockPlacementDispenserBehavior()); | ||
// DispenserBlock.registerBehavior(Items.BUCKET.asItem(), new ShearsDispenserBehavior()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters