From 389b2e0e90a26d75e4367f381d89d66156a5b9b2 Mon Sep 17 00:00:00 2001 From: simibubi <31564874+simibubi@users.noreply.github.com> Date: Tue, 30 Mar 2021 16:57:21 +0200 Subject: [PATCH 1/3] Ponder fix-ups - Input window elements no longer use integer coordinates - Comfy reading is now a config option and persists across ponder UIs - Disabled editor mode --- .../create/foundation/config/CClient.java | 15 ++++++++++----- .../create/foundation/ponder/PonderUI.java | 16 ++++++++++++---- .../foundation/ponder/content/PonderIndex.java | 2 +- .../ponder/elements/InputWindowElement.java | 4 ++-- 4 files changed, 25 insertions(+), 12 deletions(-) diff --git a/src/main/java/com/simibubi/create/foundation/config/CClient.java b/src/main/java/com/simibubi/create/foundation/config/CClient.java index fbd8c1d7a..bdaf48de0 100644 --- a/src/main/java/com/simibubi/create/foundation/config/CClient.java +++ b/src/main/java/com/simibubi/create/foundation/config/CClient.java @@ -3,7 +3,7 @@ package com.simibubi.create.foundation.config; public class CClient extends ConfigBase { public ConfigGroup client = group(0, "client", - "Client-only settings - If you're looking for general settings, look inside your worlds serverconfig folder!"); + "Client-only settings - If you're looking for general settings, look inside your worlds serverconfig folder!"); public ConfigBool tooltips = b(true, "enableTooltips", "Show item descriptions on Shift and controls on Ctrl."); public ConfigBool enableOverstressedTooltip = b(true, "enableOverstressedTooltip", "Display a tooltip when looking at overstressed components."); @@ -12,13 +12,18 @@ public class CClient extends ConfigBase { public ConfigFloat fanParticleDensity = f(.5f, 0, 1, "fanParticleDensity"); public ConfigBool rainbowDebug = b(true, "enableRainbowDebug", "Show colourful debug information while the F3-Menu is open."); - public ConfigBool experimentalRendering = b(true, "experimentalRendering", "Use modern OpenGL features to drastically increase performance."); + public ConfigInt overlayOffsetX = i(20, Integer.MIN_VALUE, Integer.MAX_VALUE, "overlayOffsetX", + "Offset the overlay from goggle- and hover- information by this many pixels on the X axis; Use /create overlay"); + public ConfigInt overlayOffsetY = i(0, Integer.MIN_VALUE, Integer.MAX_VALUE, "overlayOffsetY", + "Offset the overlay from goggle- and hover- information by this many pixels on the Y axis; Use /create overlay"); + public ConfigBool smoothPlacementIndicator = b(false, "smoothPlacementIndicator", + "Use an alternative indicator when showing where the assisted placement ends up relative to your crosshair"); - public ConfigInt overlayOffsetX = i(20, Integer.MIN_VALUE, Integer.MAX_VALUE, "overlayOffsetX", "Offset the overlay from goggle- and hover- information by this many pixels on the X axis; Use /create overlay"); - public ConfigInt overlayOffsetY = i(0, Integer.MIN_VALUE, Integer.MAX_VALUE, "overlayOffsetY", "Offset the overlay from goggle- and hover- information by this many pixels on the Y axis; Use /create overlay"); - public ConfigBool smoothPlacementIndicator = b(false, "smoothPlacementIndicator", "Use an alternative indicator when showing where the assisted placement ends up relative to your crosshair"); + public ConfigGroup ponder = group(1, "ponder", "Ponder settings"); + public ConfigBool comfyReading = + b(false, "comfyReading", "Slow down a ponder scene whenever there is text on screen."); @Override public String getName() { diff --git a/src/main/java/com/simibubi/create/foundation/ponder/PonderUI.java b/src/main/java/com/simibubi/create/foundation/ponder/PonderUI.java index 126d10ad0..c9e4d1e9a 100644 --- a/src/main/java/com/simibubi/create/foundation/ponder/PonderUI.java +++ b/src/main/java/com/simibubi/create/foundation/ponder/PonderUI.java @@ -12,6 +12,7 @@ import org.lwjgl.opengl.GL11; import com.mojang.blaze3d.matrix.MatrixStack; import com.mojang.blaze3d.systems.RenderSystem; +import com.simibubi.create.foundation.config.AllConfigs; import com.simibubi.create.foundation.gui.AllGuiTextures; import com.simibubi.create.foundation.gui.AllIcons; import com.simibubi.create.foundation.gui.GuiGameElement; @@ -80,7 +81,6 @@ public class PonderUI extends NavigatableSimiScreen { PonderChapter chapter = null; private boolean userViewMode; - private boolean slowTextMode; private boolean identifyMode; private ItemStack hoveredTooltipItem; private BlockPos hoveredBlockPos; @@ -205,7 +205,7 @@ public class PonderUI extends NavigatableSimiScreen { .fade(0, -1)); widgets.add(slowMode = new PonderButton(width - 20 - 31, bY, () -> { - slowTextMode = !slowTextMode; + setComfyReadingEnabled(!isComfyReadingEnabled()); }).showing(AllIcons.I_MTD_SLOW_MODE) .fade(0, -1)); @@ -269,7 +269,7 @@ public class PonderUI extends NavigatableSimiScreen { PonderScene activeScene = scenes.get(index); extendedTickLength = 0; - if (slowTextMode) + if (isComfyReadingEnabled()) activeScene.forEachVisible(TextWindowElement.class, twe -> extendedTickLength = 2); if (extendedTickTimer == 0) { @@ -616,7 +616,7 @@ public class PonderUI extends NavigatableSimiScreen { userMode.dim(); } - if (slowTextMode) + if (isComfyReadingEnabled()) slowMode.flash(); else slowMode.dim(); @@ -981,4 +981,12 @@ public class PonderUI extends NavigatableSimiScreen { hoveredTooltipItem = ItemStack.EMPTY; } + public boolean isComfyReadingEnabled() { + return AllConfigs.CLIENT.comfyReading.get(); + } + + public void setComfyReadingEnabled(boolean slowTextMode) { + AllConfigs.CLIENT.comfyReading.set(slowTextMode); + } + } diff --git a/src/main/java/com/simibubi/create/foundation/ponder/content/PonderIndex.java b/src/main/java/com/simibubi/create/foundation/ponder/content/PonderIndex.java index 942d0f754..970bd18f1 100644 --- a/src/main/java/com/simibubi/create/foundation/ponder/content/PonderIndex.java +++ b/src/main/java/com/simibubi/create/foundation/ponder/content/PonderIndex.java @@ -8,7 +8,7 @@ import net.minecraft.block.Blocks; public class PonderIndex { - public static final boolean EDITOR_MODE = true; + public static final boolean EDITOR_MODE = false; public static void register() { // Register storyboards here diff --git a/src/main/java/com/simibubi/create/foundation/ponder/elements/InputWindowElement.java b/src/main/java/com/simibubi/create/foundation/ponder/elements/InputWindowElement.java index 7791bfb25..8e33a1556 100644 --- a/src/main/java/com/simibubi/create/foundation/ponder/elements/InputWindowElement.java +++ b/src/main/java/com/simibubi/create/foundation/ponder/elements/InputWindowElement.java @@ -84,8 +84,8 @@ public class InputWindowElement extends AnimatedOverlayElement { int width = 0; int height = 0; - int xFade = direction == Pointing.RIGHT ? -1 : direction == Pointing.LEFT ? 1 : 0; - int yFade = direction == Pointing.DOWN ? -1 : direction == Pointing.UP ? 1 : 0; + float xFade = direction == Pointing.RIGHT ? -1 : direction == Pointing.LEFT ? 1 : 0; + float yFade = direction == Pointing.DOWN ? -1 : direction == Pointing.UP ? 1 : 0; xFade *= 10 * (1 - fade); yFade *= 10 * (1 - fade); From 3a6714fb081903e09709d3e443c69c98cfddee2e Mon Sep 17 00:00:00 2001 From: simibubi <31564874+simibubi@users.noreply.github.com> Date: Tue, 30 Mar 2021 18:10:24 +0200 Subject: [PATCH 2/3] Handy Tweaks - Deployers now place block drops into their internal inventory - Deployers can now harvest honey or honeycombs from beehives - Pipes can now connect to and drain liquid honey from beehives --- .../components/deployer/DeployerHandler.java | 144 +++++++++++------- .../contraptions/fluids/FluidPropagator.java | 2 + .../contraptions/fluids/OpenEndedPipe.java | 22 ++- .../fluids/pipes/FluidPipeBlock.java | 2 + 4 files changed, 109 insertions(+), 61 deletions(-) diff --git a/src/main/java/com/simibubi/create/content/contraptions/components/deployer/DeployerHandler.java b/src/main/java/com/simibubi/create/content/contraptions/components/deployer/DeployerHandler.java index 796400fc7..179a16775 100644 --- a/src/main/java/com/simibubi/create/content/contraptions/components/deployer/DeployerHandler.java +++ b/src/main/java/com/simibubi/create/content/contraptions/components/deployer/DeployerHandler.java @@ -13,19 +13,17 @@ import com.simibubi.create.content.contraptions.components.deployer.DeployerTile import com.simibubi.create.content.curiosities.tools.SandPaperItem; import com.simibubi.create.foundation.utility.worldWrappers.WrappedWorld; -import net.minecraft.advancements.CriteriaTriggers; import net.minecraft.block.BeehiveBlock; import net.minecraft.block.Block; import net.minecraft.block.BlockState; import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.enchantment.EnchantmentHelper; -import net.minecraft.enchantment.Enchantments; import net.minecraft.entity.Entity; import net.minecraft.entity.LivingEntity; import net.minecraft.entity.ai.attributes.AttributeModifier; import net.minecraft.entity.item.ItemEntity; import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.fluid.Fluid; import net.minecraft.fluid.Fluids; import net.minecraft.inventory.EquipmentSlotType; @@ -39,13 +37,13 @@ import net.minecraft.item.ItemUseContext; import net.minecraft.item.Items; import net.minecraft.nbt.CompoundNBT; import net.minecraft.server.management.PlayerInteractionManager; -import net.minecraft.stats.Stats; -import net.minecraft.tileentity.BeehiveTileEntity; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.ActionResult; import net.minecraft.util.ActionResultType; import net.minecraft.util.Direction; import net.minecraft.util.Hand; +import net.minecraft.util.SoundCategory; +import net.minecraft.util.SoundEvents; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.BlockRayTraceResult; @@ -53,6 +51,7 @@ import net.minecraft.util.math.RayTraceContext; import net.minecraft.util.math.RayTraceContext.BlockMode; import net.minecraft.util.math.RayTraceContext.FluidMode; import net.minecraft.util.math.Vec3d; +import net.minecraft.world.GameType; import net.minecraft.world.World; import net.minecraft.world.server.ServerWorld; import net.minecraftforge.common.ForgeHooks; @@ -216,7 +215,7 @@ public class DeployerHandler { progress += before; if (progress >= 1) { - safeTryHarvestBlock(player.interactionManager, clickedPos); + tryHarvestBlock(player.interactionManager, clickedPos); world.sendBlockBreakProgress(player.getEntityId(), clickedPos, -1); player.blockBreakingProgress = null; return; @@ -255,11 +254,9 @@ public class DeployerHandler { boolean flag1 = !(player.isSneaking() && holdingSomething) || (stack.doesSneakBypassUse(world, clickedPos, player)); - if (clickedState.getBlock() instanceof BeehiveBlock) - return; // Beehives assume a lot about the usage context. Crashes to side-effects - // Use on block - if (useBlock != DENY && flag1 && clickedState.onUse(world, player, hand, result) == ActionResultType.SUCCESS) + if (useBlock != DENY && flag1 + && safeOnUse(clickedState, world, clickedPos, player, hand, result) == ActionResultType.SUCCESS) return; if (stack.isEmpty()) return; @@ -294,7 +291,8 @@ public class DeployerHandler { ActionResult onItemRightClick = item.onItemRightClick(itemUseWorld, player, hand); ItemStack resultStack = onItemRightClick.getResult(); - if (resultStack != stack || resultStack.getCount() != stack.getCount() || resultStack.getUseDuration() > 0 || resultStack.getDamage() != stack.getDamage()) { + if (resultStack != stack || resultStack.getCount() != stack.getCount() || resultStack.getUseDuration() > 0 + || resultStack.getDamage() != stack.getDamage()) { player.setHeldItem(hand, onItemRightClick.getResult()); } @@ -309,51 +307,89 @@ public class DeployerHandler { player.resetActiveHand(); } - private static boolean safeTryHarvestBlock(PlayerInteractionManager interactionManager, BlockPos clickedPos) { - BlockState state = interactionManager.world.getBlockState(clickedPos); - if (!(state.getBlock() instanceof BeehiveBlock)) - return interactionManager.tryHarvestBlock(clickedPos); - else { - harvestBeehive(interactionManager, state, clickedPos); - } + public static boolean tryHarvestBlock(PlayerInteractionManager interactionManager, BlockPos pos) { + // <> PlayerInteractionManager#tryHarvestBlock + + ServerWorld world = interactionManager.world; + ServerPlayerEntity player = interactionManager.player; + BlockState blockstate = world.getBlockState(pos); + GameType gameType = interactionManager.getGameType(); + + if (net.minecraftforge.common.ForgeHooks.onBlockBreakEvent(world, gameType, player, pos) == -1) + return false; + + TileEntity tileentity = world.getTileEntity(pos); + if (player.getHeldItemMainhand() + .onBlockStartBreak(pos, player)) + return false; + if (player.canMine(world, pos, gameType)) + return false; + + ItemStack prevHeldItem = player.getHeldItemMainhand(); + ItemStack heldItem = prevHeldItem.copy(); + + boolean canHarvest = blockstate.canHarvestBlock(world, pos, player); + prevHeldItem.onBlockDestroyed(world, blockstate, pos, player); + if (prevHeldItem.isEmpty() && !heldItem.isEmpty()) + net.minecraftforge.event.ForgeEventFactory.onPlayerDestroyItem(player, heldItem, Hand.MAIN_HAND); + if (!blockstate.removedByPlayer(world, pos, player, canHarvest, world.getFluidState(pos))) + return true; + + blockstate.getBlock() + .onPlayerDestroy(world, pos, blockstate); + if (!canHarvest) + return true; + + Block.getDrops(blockstate, world, pos, tileentity, player, prevHeldItem) + .forEach(item -> player.inventory.placeItemBackInInventory(world, item)); + blockstate.spawnAdditionalDrops(world, pos, prevHeldItem); return true; } - private static void harvestBeehive(PlayerInteractionManager interactionManager, BlockState state, - BlockPos clickedPos) { - // Modified code from PlayerInteractionManager, Block and BeehiveBlock to handle - // deployers breaking beehives without crash. - ItemStack itemstack = interactionManager.player.getHeldItemMainhand(); - ItemStack itemstack1 = itemstack.copy(); - - boolean flag1 = state.canHarvestBlock(interactionManager.world, clickedPos, interactionManager.player); - itemstack.onBlockDestroyed(interactionManager.world, state, clickedPos, interactionManager.player); - if (itemstack.isEmpty() && !itemstack1.isEmpty()) - net.minecraftforge.event.ForgeEventFactory.onPlayerDestroyItem(interactionManager.player, itemstack1, - Hand.MAIN_HAND); - - boolean flag = state.removedByPlayer(interactionManager.world, clickedPos, interactionManager.player, flag1, - interactionManager.world.getFluidState(clickedPos)); - if (flag) - state.getBlock() - .onPlayerDestroy(interactionManager.world, clickedPos, state); - - if (flag && flag1) { - interactionManager.player.addStat(Stats.BLOCK_MINED.get(state.getBlock())); - interactionManager.player.addExhaustion(0.005F); - TileEntity te = interactionManager.world.getTileEntity(clickedPos); - ItemStack heldItem = interactionManager.player.getHeldItemMainhand(); - Block.spawnDrops(state, interactionManager.world, clickedPos, te, interactionManager.player, heldItem); - - if (!interactionManager.world.isRemote && te instanceof BeehiveTileEntity) { - BeehiveTileEntity beehivetileentity = (BeehiveTileEntity) te; - if (EnchantmentHelper.getEnchantmentLevel(Enchantments.SILK_TOUCH, heldItem) == 0) { - interactionManager.world.updateComparatorOutputLevel(clickedPos, state.getBlock()); - } - - CriteriaTriggers.BEE_NEST_DESTROYED.test(interactionManager.player, - state.getBlock(), heldItem, beehivetileentity.getBeeCount()); - } - } + public static ActionResultType safeOnUse(BlockState state, World world, BlockPos pos, PlayerEntity player, + Hand hand, BlockRayTraceResult ray) { + if (state.getBlock() instanceof BeehiveBlock) + return safeOnBeehiveUse(state, world, pos, player, hand); + return state.onUse(world, player, hand, ray); } + + protected static ActionResultType safeOnBeehiveUse(BlockState state, World world, BlockPos pos, PlayerEntity player, + Hand hand) { + // <> BeehiveBlock#onUse + + BeehiveBlock block = (BeehiveBlock) state.getBlock(); + ItemStack prevHeldItem = player.getHeldItem(hand); + int honeyLevel = state.get(BeehiveBlock.HONEY_LEVEL); + boolean success = false; + if (honeyLevel < 5) + return ActionResultType.PASS; + + if (prevHeldItem.getItem() == Items.SHEARS) { + world.playSound(player, player.getX(), player.getY(), player.getZ(), SoundEvents.field_226133_ah_, + SoundCategory.NEUTRAL, 1.0F, 1.0F); + // <> BeehiveBlock#dropHoneycomb + player.inventory.placeItemBackInInventory(world, new ItemStack(Items.field_226635_pU_, 3)); + prevHeldItem.damageItem(1, player, s -> s.sendBreakAnimation(hand)); + success = true; + } + + if (prevHeldItem.getItem() == Items.GLASS_BOTTLE) { + prevHeldItem.shrink(1); + world.playSound(player, player.getX(), player.getY(), player.getZ(), SoundEvents.ITEM_BOTTLE_FILL, + SoundCategory.NEUTRAL, 1.0F, 1.0F); + ItemStack honeyBottle = new ItemStack(Items.field_226638_pX_); + if (prevHeldItem.isEmpty()) + player.setHeldItem(hand, honeyBottle); + else + player.inventory.placeItemBackInInventory(world, honeyBottle); + success = true; + } + + if (!success) + return ActionResultType.PASS; + + block.takeHoney(world, state, pos); + return ActionResultType.SUCCESS; + } + } diff --git a/src/main/java/com/simibubi/create/content/contraptions/fluids/FluidPropagator.java b/src/main/java/com/simibubi/create/content/contraptions/fluids/FluidPropagator.java index f82785446..48f01d48b 100644 --- a/src/main/java/com/simibubi/create/content/contraptions/fluids/FluidPropagator.java +++ b/src/main/java/com/simibubi/create/content/contraptions/fluids/FluidPropagator.java @@ -156,6 +156,8 @@ public class FluidPropagator { if (PumpBlock.isPump(connectedState) && connectedState.get(PumpBlock.FACING) .getAxis() == side.getAxis()) return false; + if (connectedState.has(BlockStateProperties.HONEY_LEVEL)) + return true; if (Block.hasSolidSide(connectedState, reader, connectedPos, side.getOpposite())) return false; if (!(connectedState.getMaterial() diff --git a/src/main/java/com/simibubi/create/content/contraptions/fluids/OpenEndedPipe.java b/src/main/java/com/simibubi/create/content/contraptions/fluids/OpenEndedPipe.java index 785216484..3a085e7e1 100644 --- a/src/main/java/com/simibubi/create/content/contraptions/fluids/OpenEndedPipe.java +++ b/src/main/java/com/simibubi/create/content/contraptions/fluids/OpenEndedPipe.java @@ -1,5 +1,8 @@ package com.simibubi.create.content.contraptions.fluids; +import static net.minecraft.state.properties.BlockStateProperties.HONEY_LEVEL; +import static net.minecraft.state.properties.BlockStateProperties.WATERLOGGED; + import java.util.List; import javax.annotation.Nullable; @@ -21,7 +24,6 @@ import net.minecraft.nbt.CompoundNBT; import net.minecraft.potion.Effect; import net.minecraft.potion.EffectInstance; import net.minecraft.potion.PotionUtils; -import net.minecraft.state.properties.BlockStateProperties; import net.minecraft.tags.FluidTags; import net.minecraft.util.Direction; import net.minecraft.util.SoundCategory; @@ -71,7 +73,13 @@ public class OpenEndedPipe extends FlowSource { BlockState state = world.getBlockState(outputPos); IFluidState fluidState = state.getFluidState(); - boolean waterlog = state.has(BlockStateProperties.WATERLOGGED); + boolean waterlog = state.has(WATERLOGGED); + + if (state.has(HONEY_LEVEL) && state.get(HONEY_LEVEL) >= 5) { + if (!simulate) + world.setBlockState(outputPos, state.with(HONEY_LEVEL, 0), 3); + return new FluidStack(AllFluids.HONEY.get(), 250); + } if (!waterlog && !state.getMaterial() .isReplaceable()) @@ -83,11 +91,11 @@ public class OpenEndedPipe extends FlowSource { if (simulate) return stack; - + AllTriggers.triggerForNearbyPlayers(AllTriggers.PIPE_SPILL, world, pos, 5); if (waterlog) { - world.setBlockState(outputPos, state.with(BlockStateProperties.WATERLOGGED, false), 3); + world.setBlockState(outputPos, state.with(WATERLOGGED, false), 3); world.getPendingFluidTicks() .scheduleTick(outputPos, Fluids.WATER, 1); return stack; @@ -105,7 +113,7 @@ public class OpenEndedPipe extends FlowSource { BlockState state = world.getBlockState(outputPos); IFluidState fluidState = state.getFluidState(); - boolean waterlog = state.has(BlockStateProperties.WATERLOGGED); + boolean waterlog = state.has(WATERLOGGED); if (!waterlog && !state.getMaterial() .isReplaceable()) @@ -139,11 +147,11 @@ public class OpenEndedPipe extends FlowSource { 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F); return true; } - + AllTriggers.triggerForNearbyPlayers(AllTriggers.PIPE_SPILL, world, pos, 5); if (waterlog) { - world.setBlockState(outputPos, state.with(BlockStateProperties.WATERLOGGED, true), 3); + world.setBlockState(outputPos, state.with(WATERLOGGED, true), 3); world.getPendingFluidTicks() .scheduleTick(outputPos, Fluids.WATER, 1); return true; diff --git a/src/main/java/com/simibubi/create/content/contraptions/fluids/pipes/FluidPipeBlock.java b/src/main/java/com/simibubi/create/content/contraptions/fluids/pipes/FluidPipeBlock.java index 67eb4c6e2..b28c60f7a 100644 --- a/src/main/java/com/simibubi/create/content/contraptions/fluids/pipes/FluidPipeBlock.java +++ b/src/main/java/com/simibubi/create/content/contraptions/fluids/pipes/FluidPipeBlock.java @@ -142,6 +142,8 @@ public class FluidPipeBlock extends SixWayBlock implements IWaterLoggable, IWren public static boolean canConnectTo(ILightReader world, BlockPos neighbourPos, BlockState neighbour, Direction direction) { if (FluidPropagator.hasFluidCapability(world, neighbourPos, direction.getOpposite())) return true; + if (neighbour.has(BlockStateProperties.HONEY_LEVEL)) + return true; FluidTransportBehaviour transport = TileEntityBehaviour.get(world, neighbourPos, FluidTransportBehaviour.TYPE); BracketedTileEntityBehaviour bracket = TileEntityBehaviour.get(world, neighbourPos, BracketedTileEntityBehaviour.TYPE); if (isPipe(neighbour)) From ae340ccac0f69169d35479f44c24dfc3e17232e4 Mon Sep 17 00:00:00 2001 From: simibubi <31564874+simibubi@users.noreply.github.com> Date: Tue, 30 Mar 2021 18:48:57 +0200 Subject: [PATCH 3/3] Spooky ghost honey - Fixed pipes drawing non-source honey from beehives - Fixed deployers duplicating glass bottles --- .../contraptions/components/deployer/DeployerFakePlayer.java | 1 + .../create/content/contraptions/fluids/OpenEndedPipe.java | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/simibubi/create/content/contraptions/components/deployer/DeployerFakePlayer.java b/src/main/java/com/simibubi/create/content/contraptions/components/deployer/DeployerFakePlayer.java index 9d632361b..b3a9b06c4 100644 --- a/src/main/java/com/simibubi/create/content/contraptions/components/deployer/DeployerFakePlayer.java +++ b/src/main/java/com/simibubi/create/content/contraptions/components/deployer/DeployerFakePlayer.java @@ -90,6 +90,7 @@ public class DeployerFakePlayer extends FakePlayer { @Override public ItemStack onFoodEaten(World world, ItemStack stack) { + stack.shrink(1); return stack; } diff --git a/src/main/java/com/simibubi/create/content/contraptions/fluids/OpenEndedPipe.java b/src/main/java/com/simibubi/create/content/contraptions/fluids/OpenEndedPipe.java index 3a085e7e1..487a211cc 100644 --- a/src/main/java/com/simibubi/create/content/contraptions/fluids/OpenEndedPipe.java +++ b/src/main/java/com/simibubi/create/content/contraptions/fluids/OpenEndedPipe.java @@ -78,7 +78,8 @@ public class OpenEndedPipe extends FlowSource { if (state.has(HONEY_LEVEL) && state.get(HONEY_LEVEL) >= 5) { if (!simulate) world.setBlockState(outputPos, state.with(HONEY_LEVEL, 0), 3); - return new FluidStack(AllFluids.HONEY.get(), 250); + return new FluidStack(AllFluids.HONEY.get() + .getStillFluid(), 250); } if (!waterlog && !state.getMaterial()