Compare commits

...

4 commits

Author SHA1 Message Date
Ell
2597923ec8 1.17.0 2024-09-15 21:46:32 +02:00
Ell
f5894f4528 removed fabric mod json 2024-09-15 21:19:39 +02:00
Ell
4a43c32342 fixes 2024-09-15 20:56:48 +02:00
Ell
9f55e87972 small fixes 2024-09-15 20:24:34 +02:00
56 changed files with 168 additions and 132 deletions

View file

@ -34,7 +34,7 @@ mod_name=PrettyPipes
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=MIT mod_license=MIT
# The mod version. See https://semver.org/ # The mod version. See https://semver.org/
mod_version=1.16.3 mod_version=1.17.0
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources. # This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html # See https://maven.apache.org/guides/mini/guide-naming-conventions.html

View file

@ -42,7 +42,7 @@ public final class Utility {
public static final Codec<ItemStackHandler> ITEM_STACK_HANDLER_CODEC = RecordCodecBuilder.create(builder -> builder.group( public static final Codec<ItemStackHandler> ITEM_STACK_HANDLER_CODEC = RecordCodecBuilder.create(builder -> builder.group(
Codec.INT.fieldOf("size").forGetter(h -> h.getSlots()), Codec.INT.fieldOf("size").forGetter(h -> h.getSlots()),
Codec.list(ItemStack.CODEC).fieldOf("items").forGetter(h -> IntStream.range(0, h.getSlots()).mapToObj(h::getStackInSlot).toList()) Codec.list(ItemStack.OPTIONAL_CODEC).fieldOf("items").forGetter(h -> IntStream.range(0, h.getSlots()).mapToObj(h::getStackInSlot).toList())
).apply(builder, (size, items) -> { ).apply(builder, (size, items) -> {
var ret = new ItemStackHandler(size); var ret = new ItemStackHandler(size);
for (var i = 0; i < items.size(); i++) for (var i = 0; i < items.size(); i++)

View file

@ -103,7 +103,7 @@ public class JEIPrettyPipesPlugin implements IModPlugin {
} }
@SubscribeEvent @SubscribeEvent
public void onClientTick(ClientTickEvent event) { public void onClientTick(ClientTickEvent.Pre event) {
if (!PlayerPrefs.get().syncJei) if (!PlayerPrefs.get().syncJei)
return; return;

View file

@ -5,6 +5,7 @@ import com.mojang.serialization.codecs.RecordCodecBuilder;
import de.ellpeck.prettypipes.PrettyPipes; import de.ellpeck.prettypipes.PrettyPipes;
import de.ellpeck.prettypipes.packets.PacketButton; import de.ellpeck.prettypipes.packets.PacketButton;
import de.ellpeck.prettypipes.pipe.PipeBlockEntity; import de.ellpeck.prettypipes.pipe.PipeBlockEntity;
import joptsimple.internal.Strings;
import net.minecraft.client.gui.components.AbstractWidget; import net.minecraft.client.gui.components.AbstractWidget;
import net.minecraft.core.Direction; import net.minecraft.core.Direction;
import net.minecraft.core.component.DataComponentType; import net.minecraft.core.component.DataComponentType;
@ -68,13 +69,13 @@ public class DirectionSelector {
if (!this.modified) if (!this.modified)
return; return;
this.modified = false; this.modified = false;
this.stack.set(Data.TYPE, new Data(this.direction.getName())); this.stack.set(Data.TYPE, new Data(this.direction != null ? this.direction.getName() : ""));
} }
public void load() { public void load() {
var data = this.stack.get(Data.TYPE); var data = this.stack.get(Data.TYPE);
if (data != null) if (data != null)
this.direction = Direction.byName(data.direction); this.direction = !Strings.isNullOrEmpty(data.direction) ? Direction.byName(data.direction) : null;
} }
public Direction[] directions() { public Direction[] directions() {

View file

@ -45,8 +45,7 @@ public class NetworkEdge extends DefaultWeightedEdge implements INBTSerializable
@Override @Override
public void deserializeNBT(HolderLookup.Provider provider, CompoundTag nbt) { public void deserializeNBT(HolderLookup.Provider provider, CompoundTag nbt) {
this.pipes.clear(); this.pipes.clear();
var list = nbt.getList("pipes", Tag.TAG_COMPOUND); for (var tag : nbt.getList("pipes", Tag.TAG_INT_ARRAY))
for (var tag : list)
this.pipes.add(Utility.readBlockPos(tag)); this.pipes.add(Utility.readBlockPos(tag));
} }

View file

@ -274,8 +274,7 @@ public class PipeItem implements IPipeItem {
this.y = nbt.getFloat("y"); this.y = nbt.getFloat("y");
this.z = nbt.getFloat("z"); this.z = nbt.getFloat("z");
this.path.clear(); this.path.clear();
var list = nbt.getList("path", Tag.TAG_COMPOUND); for (var tag : nbt.getList("path", Tag.TAG_INT_ARRAY))
for (var tag : list)
this.path.add(Utility.readBlockPos(tag)); this.path.add(Utility.readBlockPos(tag));
} }

View file

@ -64,8 +64,7 @@ public class PipeNetwork extends SavedData implements GraphListener<BlockPos, Ne
public PipeNetwork(CompoundTag nbt, HolderLookup.Provider provider) { public PipeNetwork(CompoundTag nbt, HolderLookup.Provider provider) {
this(); this();
var nodes = nbt.getList("nodes", Tag.TAG_COMPOUND); for (var node : nbt.getList("nodes", Tag.TAG_INT_ARRAY))
for (var node : nodes)
this.graph.addVertex(Utility.readBlockPos(node)); this.graph.addVertex(Utility.readBlockPos(node));
var edges = nbt.getList("edges", Tag.TAG_COMPOUND); var edges = nbt.getList("edges", Tag.TAG_COMPOUND);
for (var i = 0; i < edges.size(); i++) for (var i = 0; i < edges.size(); i++)

View file

@ -19,8 +19,8 @@ public record PacketCraftingModuleTransfer(List<ItemStack> inputs, List<ItemStac
public static final Type<PacketCraftingModuleTransfer> TYPE = new Type<>(ResourceLocation.fromNamespaceAndPath(PrettyPipes.ID, "crafting_module_transfer")); public static final Type<PacketCraftingModuleTransfer> TYPE = new Type<>(ResourceLocation.fromNamespaceAndPath(PrettyPipes.ID, "crafting_module_transfer"));
public static final StreamCodec<RegistryFriendlyByteBuf, PacketCraftingModuleTransfer> CODEC = StreamCodec.composite( public static final StreamCodec<RegistryFriendlyByteBuf, PacketCraftingModuleTransfer> CODEC = StreamCodec.composite(
ByteBufCodecs.collection(ArrayList::new, ItemStack.STREAM_CODEC), PacketCraftingModuleTransfer::inputs, ItemStack.LIST_STREAM_CODEC, PacketCraftingModuleTransfer::inputs,
ByteBufCodecs.collection(ArrayList::new, ItemStack.STREAM_CODEC), PacketCraftingModuleTransfer::outputs, ItemStack.LIST_STREAM_CODEC, PacketCraftingModuleTransfer::outputs,
PacketCraftingModuleTransfer::new); PacketCraftingModuleTransfer::new);
@Override @Override

View file

@ -21,6 +21,7 @@ import net.neoforged.neoforge.network.handling.IPayloadContext;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors; import java.util.stream.Collectors;
public record PacketGhostSlot(BlockPos pos, List<Entry> stacks) implements CustomPacketPayload { public record PacketGhostSlot(BlockPos pos, List<Entry> stacks) implements CustomPacketPayload {
@ -43,28 +44,27 @@ public record PacketGhostSlot(BlockPos pos, List<Entry> stacks) implements Custo
tile.setGhostItems(message.stacks); tile.setGhostItems(message.stacks);
} }
public record Entry(List<ItemStack> stacks, TagKey<Item> tag) { public record Entry(Optional<List<ItemStack>> stacks, Optional<TagKey<Item>> tag) {
public static final StreamCodec<RegistryFriendlyByteBuf, Entry> CODEC = StreamCodec.composite( public static final StreamCodec<RegistryFriendlyByteBuf, Entry> CODEC = StreamCodec.composite(
ByteBufCodecs.collection(ArrayList::new, ItemStack.STREAM_CODEC), Entry::stacks, ByteBufCodecs.optional(ItemStack.OPTIONAL_LIST_STREAM_CODEC), Entry::stacks,
ByteBufCodecs.fromCodec(TagKey.codec(Registries.ITEM)), Entry::tag, ByteBufCodecs.optional(ByteBufCodecs.fromCodec(TagKey.codec(Registries.ITEM))), Entry::tag,
Entry::new); Entry::new);
public static Entry fromStacks(Level level, List<ItemStack> stacks) { public static Entry fromStacks(Level level, List<ItemStack> stacks) {
var tag = Entry.getTagForStacks(level, stacks); var tag = Entry.getTagForStacks(level, stacks);
if (tag != null) { if (tag != null) {
return new Entry(null, tag); return new Entry(Optional.empty(), Optional.of(tag));
} else { } else {
return new Entry(stacks, null); return new Entry(Optional.of(stacks), Optional.empty());
} }
} }
public List<ItemStack> getStacks(Level level) { public List<ItemStack> getStacks(Level level) {
if (this.stacks != null) return this.stacks.orElseGet(() ->
return this.stacks; Streams.stream(level.registryAccess().registry(Registries.ITEM).orElseThrow().getTagOrEmpty(this.tag.orElseThrow()).iterator())
return Streams.stream(level.registryAccess().registry(Registries.ITEM).orElseThrow().getTagOrEmpty(this.tag).iterator())
.filter(h -> h.value() != null & h.value() != Items.AIR) .filter(h -> h.value() != null & h.value() != Items.AIR)
.map(h -> new ItemStack(h.value())).collect(Collectors.toList()); .map(h -> new ItemStack(h.value())).collect(Collectors.toList()));
} }
private static TagKey<Item> getTagForStacks(Level level, List<ItemStack> stacks) { private static TagKey<Item> getTagForStacks(Level level, List<ItemStack> stacks) {

View file

@ -18,9 +18,9 @@ public record PacketNetworkItems(List<ItemStack> items, List<ItemStack> craftabl
public static final Type<PacketNetworkItems> TYPE = new Type<>(ResourceLocation.fromNamespaceAndPath(PrettyPipes.ID, "network_items")); public static final Type<PacketNetworkItems> TYPE = new Type<>(ResourceLocation.fromNamespaceAndPath(PrettyPipes.ID, "network_items"));
public static final StreamCodec<RegistryFriendlyByteBuf, PacketNetworkItems> CODEC = StreamCodec.composite( public static final StreamCodec<RegistryFriendlyByteBuf, PacketNetworkItems> CODEC = StreamCodec.composite(
ByteBufCodecs.collection(ArrayList::new, ItemStack.STREAM_CODEC), PacketNetworkItems::items, ItemStack.LIST_STREAM_CODEC, PacketNetworkItems::items,
ByteBufCodecs.collection(ArrayList::new, ItemStack.STREAM_CODEC), PacketNetworkItems::craftables, ItemStack.LIST_STREAM_CODEC, PacketNetworkItems::craftables,
ByteBufCodecs.collection(ArrayList::new, ItemStack.STREAM_CODEC), PacketNetworkItems::currentlyCrafting, ItemStack.LIST_STREAM_CODEC, PacketNetworkItems::currentlyCrafting,
PacketNetworkItems::new); PacketNetworkItems::new);
@Override @Override

View file

@ -9,7 +9,10 @@ import net.minecraft.world.Container;
import net.minecraft.world.entity.player.Player; import net.minecraft.world.entity.player.Player;
import net.minecraft.world.inventory.*; import net.minecraft.world.inventory.*;
import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.crafting.CraftingRecipe;
import net.minecraft.world.item.crafting.RecipeHolder;
import net.minecraft.world.item.crafting.RecipeType; import net.minecraft.world.item.crafting.RecipeType;
import net.minecraft.world.level.Level;
import org.apache.commons.lang3.tuple.Pair; import org.apache.commons.lang3.tuple.Pair;
import javax.annotation.Nullable; import javax.annotation.Nullable;
@ -28,7 +31,7 @@ public class CraftingTerminalContainer extends ItemTerminalContainer {
@Override @Override
protected void addOwnSlots(Player player) { protected void addOwnSlots(Player player) {
this.craftInventory = new WrappedCraftingInventory(this.getTile().craftItems, this, 3, 3); this.craftInventory = new WrappedCraftingInventory(this.getTile().craftItems, this);
this.craftResult = new ResultContainer() { this.craftResult = new ResultContainer() {
@Override @Override
public void setChanged() { public void setChanged() {
@ -46,14 +49,7 @@ public class CraftingTerminalContainer extends ItemTerminalContainer {
@Override @Override
public void slotsChanged(Container inventoryIn) { public void slotsChanged(Container inventoryIn) {
super.slotsChanged(inventoryIn); super.slotsChanged(inventoryIn);
if (!this.player.level().isClientSide) { CraftingTerminalContainer.slotChangedCraftingGrid(this, this.player.level(), this.player, this.craftInventory, this.craftResult, null);
var ret = ItemStack.EMPTY;
var optional = this.player.level().getServer().getRecipeManager().getRecipeFor(RecipeType.CRAFTING, this.craftInventory.asCraftInput(), this.player.level());
if (optional.isPresent())
ret = optional.get().value().assemble(this.craftInventory.asCraftInput(), this.player.level().registryAccess());
this.craftResult.setItem(0, ret);
((ServerPlayer) this.player).connection.send(new ClientboundContainerSetSlotPacket(this.containerId, 0, 0, ret));
}
} }
@Override @Override
@ -80,4 +76,28 @@ public class CraftingTerminalContainer extends ItemTerminalContainer {
return (CraftingTerminalBlockEntity) this.tile; return (CraftingTerminalBlockEntity) this.tile;
} }
// copied from CraftingMenu
protected static void slotChangedCraftingGrid(AbstractContainerMenu menu, Level level, Player player, CraftingContainer craftSlots, ResultContainer resultSlots, @Nullable RecipeHolder<CraftingRecipe> recipe) {
if (!level.isClientSide) {
var craftinginput = craftSlots.asCraftInput();
var serverplayer = (ServerPlayer) player;
var itemstack = ItemStack.EMPTY;
var optional = level.getServer().getRecipeManager().getRecipeFor(RecipeType.CRAFTING, craftinginput, level, recipe);
if (optional.isPresent()) {
var recipeholder = optional.get();
var craftingrecipe = recipeholder.value();
if (resultSlots.setRecipeUsed(level, serverplayer, recipeholder)) {
var itemstack1 = craftingrecipe.assemble(craftinginput, level.registryAccess());
if (itemstack1.isItemEnabled(level.enabledFeatures())) {
itemstack = itemstack1;
}
}
}
resultSlots.setItem(0, itemstack);
menu.setRemoteSlot(0, itemstack);
serverplayer.connection.send(new ClientboundContainerSetSlotPacket(menu.containerId, menu.incrementStateId(), 0, itemstack));
}
}
} }

View file

@ -1,17 +1,20 @@
package de.ellpeck.prettypipes.terminal.containers; package de.ellpeck.prettypipes.terminal.containers;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.entity.player.StackedContents; import net.minecraft.world.entity.player.StackedContents;
import net.minecraft.world.inventory.TransientCraftingContainer; import net.minecraft.world.inventory.CraftingContainer;
import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.ItemStack;
import net.neoforged.neoforge.items.ItemStackHandler; import net.neoforged.neoforge.items.ItemStackHandler;
public class WrappedCraftingInventory extends TransientCraftingContainer { import java.util.List;
import java.util.stream.IntStream;
public class WrappedCraftingInventory implements CraftingContainer {
private final ItemStackHandler items; private final ItemStackHandler items;
private final CraftingTerminalContainer eventHandler; private final CraftingTerminalContainer eventHandler;
public WrappedCraftingInventory(ItemStackHandler items, CraftingTerminalContainer eventHandlerIn, int width, int height) { public WrappedCraftingInventory(ItemStackHandler items, CraftingTerminalContainer eventHandlerIn) {
super(eventHandlerIn, width, height);
this.eventHandler = eventHandlerIn; this.eventHandler = eventHandlerIn;
this.items = items; this.items = items;
} }
@ -47,8 +50,7 @@ public class WrappedCraftingInventory extends TransientCraftingContainer {
var slotStack = this.items.getStackInSlot(index); var slotStack = this.items.getStackInSlot(index);
var ret = !slotStack.isEmpty() && count > 0 ? slotStack.split(count) : ItemStack.EMPTY; var ret = !slotStack.isEmpty() && count > 0 ? slotStack.split(count) : ItemStack.EMPTY;
if (!ret.isEmpty()) { if (!ret.isEmpty()) {
for (var player : this.eventHandler.getTile().getLookingPlayers()) this.eventHandler.slotsChanged(this);
player.containerMenu.slotsChanged(this);
} }
return ret; return ret;
} }
@ -56,8 +58,17 @@ public class WrappedCraftingInventory extends TransientCraftingContainer {
@Override @Override
public void setItem(int index, ItemStack stack) { public void setItem(int index, ItemStack stack) {
this.items.setStackInSlot(index, stack); this.items.setStackInSlot(index, stack);
for (var player : this.eventHandler.getTile().getLookingPlayers()) this.eventHandler.slotsChanged(this);
player.containerMenu.slotsChanged(this); }
@Override
public void setChanged() {
this.eventHandler.slotsChanged(this);
}
@Override
public boolean stillValid(Player player) {
return true;
} }
@Override @Override
@ -71,4 +82,20 @@ public class WrappedCraftingInventory extends TransientCraftingContainer {
for (var i = 0; i < this.items.getSlots(); i++) for (var i = 0; i < this.items.getSlots(); i++)
helper.accountStack(this.items.getStackInSlot(i)); helper.accountStack(this.items.getStackInSlot(i));
} }
@Override
public int getWidth() {
return 3;
}
@Override
public int getHeight() {
return 3;
}
@Override
public List<ItemStack> getItems() {
return IntStream.range(0, this.getContainerSize()).mapToObj(this::getItem).toList();
}
} }

View file

@ -20,6 +20,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:blank_module" "id": "prettypipes:blank_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:crafting_terminal" "id": "prettypipes:crafting_terminal"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:damage_filter_modifier" "id": "prettypipes:damage_filter_modifier"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:filter_increase_modifier" "id": "prettypipes:filter_increase_modifier"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:high_crafting_module" "id": "prettypipes:high_crafting_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:high_extraction_module" "id": "prettypipes:high_extraction_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:high_filter_module" "id": "prettypipes:high_filter_module"
} }
} }

View file

@ -14,6 +14,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:high_high_priority_module" "id": "prettypipes:high_high_priority_module"
} }
} }

View file

@ -7,13 +7,13 @@
], ],
"key": { "key": {
"C": { "C": {
"tag": "forge:cobblestone" "tag": "c:cobblestones"
}, },
"M": { "M": {
"item": "prettypipes:medium_low_priority_module" "item": "prettypipes:medium_low_priority_module"
} }
}, },
"result": { "result": {
"item": "prettypipes:high_low_priority_module" "id": "prettypipes:high_low_priority_module"
} }
} }

View file

@ -20,6 +20,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:high_retrieval_module" "id": "prettypipes:high_retrieval_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:high_speed_module" "id": "prettypipes:high_speed_module"
} }
} }

View file

@ -19,13 +19,13 @@
"item": "minecraft:iron_block" "item": "minecraft:iron_block"
}, },
"C": { "C": {
"tag": "forge:chests" "tag": "c:chests"
}, },
"D": { "D": {
"item": "minecraft:diamond" "item": "minecraft:diamond"
} }
}, },
"result": { "result": {
"item": "prettypipes:item_terminal" "id": "prettypipes:item_terminal"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:low_crafting_module" "id": "prettypipes:low_crafting_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:low_extraction_module" "id": "prettypipes:low_extraction_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:low_filter_module" "id": "prettypipes:low_filter_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:low_high_priority_module" "id": "prettypipes:low_high_priority_module"
} }
} }

View file

@ -10,13 +10,13 @@
"item": "minecraft:redstone" "item": "minecraft:redstone"
}, },
"C": { "C": {
"tag": "forge:cobblestone" "tag": "c:cobblestones"
}, },
"M": { "M": {
"item": "prettypipes:blank_module" "item": "prettypipes:blank_module"
} }
}, },
"result": { "result": {
"item": "prettypipes:low_low_priority_module" "id": "prettypipes:low_low_priority_module"
} }
} }

View file

@ -20,6 +20,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:low_retrieval_module" "id": "prettypipes:low_retrieval_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:low_speed_module" "id": "prettypipes:low_speed_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:medium_crafting_module" "id": "prettypipes:medium_crafting_module"
} }
} }

View file

@ -14,6 +14,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:medium_extraction_module" "id": "prettypipes:medium_extraction_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:medium_filter_module" "id": "prettypipes:medium_filter_module"
} }
} }

View file

@ -14,6 +14,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:medium_high_priority_module" "id": "prettypipes:medium_high_priority_module"
} }
} }

View file

@ -7,13 +7,13 @@
], ],
"key": { "key": {
"C": { "C": {
"tag": "forge:cobblestone" "tag": "c:cobblestones"
}, },
"M": { "M": {
"item": "prettypipes:low_low_priority_module" "item": "prettypipes:low_low_priority_module"
} }
}, },
"result": { "result": {
"item": "prettypipes:medium_low_priority_module" "id": "prettypipes:medium_low_priority_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:medium_retrieval_module" "id": "prettypipes:medium_retrieval_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:medium_speed_module" "id": "prettypipes:medium_speed_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:mod_filter_modifier" "id": "prettypipes:mod_filter_modifier"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:nbt_filter_modifier" "id": "prettypipes:nbt_filter_modifier"
} }
} }

View file

@ -13,14 +13,14 @@
"item": "minecraft:iron_bars" "item": "minecraft:iron_bars"
}, },
"G": { "G": {
"tag": "forge:glass" "tag": "c:glass_blocks"
}, },
"C": { "C": {
"item": "minecraft:copper_ingot" "item": "minecraft:copper_ingot"
} }
}, },
"result": { "result": {
"item": "prettypipes:pipe", "id": "prettypipes:pipe",
"count": 4 "count": 4
} }
} }

View file

@ -12,6 +12,6 @@
} }
], ],
"result": { "result": {
"item": "prettypipes:pipe_frame" "id": "prettypipes:pipe_frame"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:pressurizer" "id": "prettypipes:pressurizer"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:random_sorting_modifier" "id": "prettypipes:random_sorting_modifier"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:redstone_module" "id": "prettypipes:redstone_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:round_robin_sorting_modifier" "id": "prettypipes:round_robin_sorting_modifier"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:stack_size_module" "id": "prettypipes:stack_size_module"
} }
} }

View file

@ -17,6 +17,6 @@
} }
}, },
"result": { "result": {
"item": "prettypipes:tag_filter_modifier" "id": "prettypipes:tag_filter_modifier"
} }
} }

View file

@ -13,10 +13,10 @@
"item": "minecraft:iron_ingot" "item": "minecraft:iron_ingot"
}, },
"R": { "R": {
"tag": "forge:dyes/red" "tag": "c:dyes/red"
} }
}, },
"result": { "result": {
"item": "prettypipes:wrench" "id": "prettypipes:wrench"
} }
} }

View file

@ -1,9 +0,0 @@
{
"schemaVersion": 1,
"id": "prettypipes",
"version": "0.0.0",
"contributors": ["SoniEx2"],
"depends": {
"forge": "*"
}
}