Reorganized Imports/Packages
This commit is contained in:
parent
a8beba9196
commit
770a5b4046
854 changed files with 42775 additions and 41811 deletions
15
src/main/java/org/betterx/betterend/item/EndBucketItem.java
Normal file
15
src/main/java/org/betterx/betterend/item/EndBucketItem.java
Normal file
|
@ -0,0 +1,15 @@
|
|||
package org.betterx.betterend.item;
|
||||
|
||||
import net.minecraft.sounds.SoundEvents;
|
||||
import net.minecraft.world.entity.EntityType;
|
||||
import net.minecraft.world.item.MobBucketItem;
|
||||
import net.minecraft.world.level.material.Fluids;
|
||||
|
||||
import org.betterx.bclib.interfaces.ItemModelProvider;
|
||||
import org.betterx.betterend.registry.EndItems;
|
||||
|
||||
public class EndBucketItem extends MobBucketItem implements ItemModelProvider {
|
||||
public EndBucketItem(EntityType<?> type) {
|
||||
super(type, Fluids.WATER, SoundEvents.BUCKET_EMPTY, EndItems.makeEndItemSettings().stacksTo(1));
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue