mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-26 00:38:35 +01:00
Cleaning up worms some more.
This commit is contained in:
parent
097803020c
commit
1fb8b80ee4
1 changed files with 31 additions and 29 deletions
|
@ -38,38 +38,40 @@ public class ItemWorm extends ItemBase {
|
||||||
public ActionResultType useOn(ItemUseContext context) {
|
public ActionResultType useOn(ItemUseContext context) {
|
||||||
BlockPos pos = context.getClickedPos();
|
BlockPos pos = context.getClickedPos();
|
||||||
ItemStack stack = context.getPlayer().getItemInHand(context.getHand());
|
ItemStack stack = context.getPlayer().getItemInHand(context.getHand());
|
||||||
BlockState state = context.getLevel().getBlockState(pos);
|
World level = context.getLevel();
|
||||||
if (EntityWorm.canWormify(context.getLevel(), context.getClickedPos(), state)) {
|
BlockState state = level.getBlockState(pos);
|
||||||
List<EntityWorm> worms = context.getLevel().getEntitiesOfClass(EntityWorm.class, new AxisAlignedBB(pos.getX() - 1, pos.getY(), pos.getZ() - 1, pos.getX() + 2, pos.getY() + 1, pos.getZ() + 2));
|
|
||||||
if (worms.isEmpty()) {
|
if (level.isClientSide || !EntityWorm.canWormify(level, context.getClickedPos(), state))
|
||||||
if (!context.getLevel().isClientSide) {
|
return super.useOn(context);
|
||||||
EntityWorm worm = new EntityWorm(ActuallyAdditions.ENTITY_WORM.get(), context.getLevel());
|
|
||||||
|
List<EntityWorm> worms = level.getEntitiesOfClass(EntityWorm.class, new AxisAlignedBB(pos.getX() - 1, pos.getY(), pos.getZ() - 1, pos.getX() + 2, pos.getY() + 1, pos.getZ() + 2));
|
||||||
|
if (!worms.isEmpty())
|
||||||
|
return super.useOn(context);
|
||||||
|
|
||||||
|
EntityWorm worm = new EntityWorm(ActuallyAdditions.ENTITY_WORM.get(), level);
|
||||||
worm.setPos(pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5);
|
worm.setPos(pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5);
|
||||||
worm.setCustomName(stack.getHoverName());
|
worm.setCustomName(stack.getHoverName());
|
||||||
context.getLevel().addFreshEntity(worm);
|
level.addFreshEntity(worm);
|
||||||
if (!context.getPlayer().isCreative()) {
|
if (!context.getPlayer().isCreative())
|
||||||
stack.shrink(1);
|
stack.shrink(1);
|
||||||
}
|
|
||||||
}
|
|
||||||
return ActionResultType.SUCCESS;
|
return ActionResultType.SUCCESS;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return super.useOn(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void onHoe(UseHoeEvent event) {
|
public static void onHoe(UseHoeEvent event) {
|
||||||
if (CommonConfig.Other.WORMS.get() && event.getResult() != Event.Result.DENY) {
|
World level = event.getEntity().level;
|
||||||
World world = event.getEntity().level;
|
|
||||||
if (!world.isClientSide) {
|
if (level.isClientSide || !CommonConfig.Other.WORMS.get() || event.getResult() == Event.Result.DENY)
|
||||||
|
return;
|
||||||
|
|
||||||
BlockPos pos = event.getContext().getClickedPos();
|
BlockPos pos = event.getContext().getClickedPos();
|
||||||
if (world.isEmptyBlock(pos.above())) {
|
if (level.isEmptyBlock(pos.above())) {
|
||||||
BlockState state = world.getBlockState(pos);
|
BlockState state = level.getBlockState(pos);
|
||||||
if (state.getBlock() == Blocks.GRASS_BLOCK && world.random.nextFloat() >= 0.95F) {
|
if (state.getBlock() == Blocks.GRASS_BLOCK && level.random.nextFloat() >= 0.95F) {
|
||||||
ItemStack stack = new ItemStack(ActuallyItems.WORM.get(), world.random.nextInt(2) + 1);
|
ItemStack stack = new ItemStack(ActuallyItems.WORM.get(), level.random.nextInt(2) + 1);
|
||||||
ItemEntity item = new ItemEntity(world, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, stack);
|
ItemEntity item = new ItemEntity(level, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, stack);
|
||||||
world.addFreshEntity(item);
|
|
||||||
}
|
level.addFreshEntity(item);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue