Skip to content

Instantly share code, notes, and snippets.

View marchermans's full-sized avatar
🏠
Working from home

Marc Hermans marchermans

🏠
Working from home
View GitHub Profile
# LDTTeam Individual Contributor License Agreement
### *Adapted from http://www.apache.org/licenses/ © Apache Software Foundation.*
In order to clarify the intellectual property license granted with Contributions from any person or entity, the the LDTTeam must have a Contributor License Agreement ("CLA") on file that has been signed by each Contributor, indicating agreement to the license terms below. This CLA is for your protection as a Contributor as well as the protection of the the LDTTeam and its users; it does not change your rights to use your own Contributions for any other purpose.
If you have not already done so, please complete and sign, then scan and email a pdf file of this CLA to [maintainers@lDTTeam.com](mailto:maintainers@lDTTeam.com).
Please read this document carefully before signing and keep a copy for your records.
package mod.chiselsandbits.render.chiseledblock.tesr;
import com.mojang.blaze3d.matrix.MatrixStack;
import com.mojang.blaze3d.vertex.IVertexBuilder;
import mod.chiselsandbits.chiseledblock.TileEntityBlockChiseled;
import mod.chiselsandbits.chiseledblock.TileEntityBlockChiseledTESR;
import mod.chiselsandbits.chiseledblock.data.VoxelNeighborRenderTracker;
import mod.chiselsandbits.render.chiseledblock.ChiselRenderType;
import mod.chiselsandbits.render.chiseledblock.ChiseledBlockBaked;
import mod.chiselsandbits.render.chiseledblock.ChiseledBlockSmartModel;
This file has been truncated, but you can view the full file.
[12Sep2020 17:47:35.939] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmluserdevclient, --fml.mcpVersion, 20200625.160719, --fml.mcVersion, 1.16.1, --fml.forgeGroup, net.minecraftforge, --fml.forgeVersion, 32.0.108, --version, MOD_DEV, --assetIndex, 1.16, --assetsDir, /home/marc/.gradle/caches/forge_gradle/assets, --username, Dev, --accessToken, ❄❄❄❄❄❄❄❄, --userProperties, {}]
[12Sep2020 17:47:35.943] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 6.1.3+75+master.851120a starting: java version 1.8.0_265 by Private Build
[12Sep2020 17:47:35.955] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,fmldevdata,fmldevclient,fmldevserver,fmluserdevserver,testharness,fmluserdevdata,fmlclient,fmluserdevclient,fmlserver]
[12Sep2020 17:47:35.964] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp]
This file has been truncated, but you can view the full file.
er: 1/DEBUG] [aequivaleo/]: Processing node: RecipeGraphNode{recipe=Equivalency via Item(Stack): 1 iron_hoe to: iron_hoe}
[17:48:09] [Aequivaleo analysis runner: 3/DEBUG] [aequivaleo/]: Processing node: ContainerWrapperGraphNode{wrapper=1.0 x Item: minecraft:polished_blackstone_stairs}
[17:48:09] [Aequivaleo analysis runner: 1/DEBUG] [aequivaleo/]: Processing node: RecipeGraphNode{recipe=Equivalency via Item(Stack): 1 stone_hoe to: stone_hoe}
[17:48:09] [Aequivaleo analysis runner: 3/DEBUG] [aequivaleo/]: Processing node: ContainerWrapperGraphNode{wrapper=1.0 x Item: minecraft:polished_blackstone_pressure_plate}
[17:48:09] [Aequivaleo analysis runner: 2/DEBUG] [aequivaleo/]: Processing node: RecipeGraphNode{recipe=Equivalent via vanilla crafting: minecraft:cyan_carpet_from_white_carpet}
[17:48:09] [Aequivaleo analysis runner: 3/DEBUG] [aequivaleo/]: Processing node: ContainerWrapperGraphNode{wrapper=1.0 x Item: minecraft:polished_blackstone_button}
This file has been truncated, but you can view the full file.
.
[17:45:54] [Aequivaleo analysis runner: 2/WARN] [aequivaleo/]: * Missing root information for: 1.0 x ItemStack: 1 birch_sign. Removing from recipe graph.
[17:45:54] [Aequivaleo analysis runner: 2/WARN] [aequivaleo/]: * Missing root information for: 1.0 x ItemStack: 1 wither_skeleton_spawn_egg. Removing from recipe graph.
[17:45:54] [Aequivaleo analysis runner: 2/WARN] [aequivaleo/]: * Missing root information for: 1.0 x ItemStack: 1 witch_spawn_egg. Removing from recipe graph.
[17:45:54] [Aequivaleo analysis runner: 2/WARN] [aequivaleo/]: * Missing root information for: 1.0 x Item: minecraft:chainmail_chestplate. Removing from recipe graph.
[17:45:54] [Aequivaleo analysis runner: 2/WARN] [aequivaleo/]: * Missing root information for: 1.0 x Item: minecraft:bee_nest. Removing from recipe graph.
[17:45:54] [Aequivaleo analysis runner: 2/WARN] [aequivaleo/]: * Missing root information for: 1.0 x ItemStack: 1 zoglin_spawn_egg. Removing from recipe graph.
This file has been truncated, but you can view the full file.
package com.ldtteam.aequivaleo.utils;
import com.ldtteam.aequivaleo.api.compound.container.ICompoundContainer;
import com.ldtteam.aequivaleo.api.recipe.equivalency.IEquivalencyRecipe;
import com.ldtteam.aequivaleo.api.recipe.equivalency.ingredient.IRecipeIngredient;
import com.ldtteam.aequivaleo.api.recipe.equivalency.ingredient.SimpleIngredientBuilder;
import com.ldtteam.aequivaleo.api.util.TriFunction;
import com.ldtteam.aequivaleo.compound.container.registry.CompoundContainerFactoryManager;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipe;
package com.ldtteam.aequivaleo.utils;
import com.ldtteam.aequivaleo.api.compound.container.ICompoundContainer;
import com.ldtteam.aequivaleo.api.recipe.equivalency.IEquivalencyRecipe;
import com.ldtteam.aequivaleo.api.recipe.equivalency.ingredient.IRecipeIngredient;
import com.ldtteam.aequivaleo.api.recipe.equivalency.ingredient.SimpleIngredientBuilder;
import com.ldtteam.aequivaleo.api.util.TriFunction;
import com.ldtteam.aequivaleo.compound.container.registry.CompoundContainerFactoryManager;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipe;
This file has been truncated, but you can view the full file.
count=1.0}. Removing from recipe graph.
[19:26:51] [Aequivaleo generic runner: 2/WARN] [aequivaleo/]: * Missing root information for: BlockContainer{contents=minecraft:bamboo, count=1.0}. Removing from recipe graph.
[19:26:51] [Aequivaleo generic runner: 2/WARN] [aequivaleo/]: * Missing root information for: BlockContainer{contents=minecraft:coal_ore, count=1.0}. Removing from recipe graph.
[19:26:51] [Aequivaleo generic runner: 2/WARN] [aequivaleo/]: * Missing root information for: BlockContainer{contents=minecraft:cut_red_sandstone_slab, count=1.0}. Removing from recipe graph.
[19:26:51] [Aequivaleo generic runner: 2/WARN] [aequivaleo/]: * Missing root information for: ItemStackWrapper{stack=1 nether_star, count=1.0}. Removing from recipe graph.
[19:26:51] [Aequivaleo generic runner: 2/WARN] [aequivaleo/]: * Missing root information for: BlockContainer{contents=minecraft:red_shulker_box, count=1.0}. Removing from recipe graph.
[21:07:42] [Aequivaleo generic runner: 1/WARN] [aequivaleo/]: ******************* WARNING: Missing root equivalency data in world: minecraft:overworld *********************
[21:07:42] [Aequivaleo generic runner: 1/WARN] [aequivaleo/]: * Missing root information for: ItemStackWrapper{stack=1 air, count=1.0}. Removing from recipe graph.
[21:07:42] [Aequivaleo generic runner: 1/WARN] [aequivaleo/]: * Missing root information for: ItemStackWrapper{stack=1 air, count=1.0}. Removing from recipe graph.
[21:07:42] [Aequivaleo generic runner: 1/WARN] [aequivaleo/]: * Missing root information for: ItemStackWrapper{stack=1 cyan_shulker_box, count=1.0}. Removing from recipe graph.
[21:07:42] [Aequivaleo generic runner: 1/WARN] [aequivaleo/]: * Missing root information for: ItemStackWrapper{stack=1 orange_concrete, count=1.0}. Removing from recipe graph.
[21:07:42] [Aequivaleo generic runner: 1/WARN] [aequivaleo/]: * Missing root information for: BlockContainer{contents=minecraft:pink_concrete, count=1.0}. Removing fr