Fix warnings

This commit is contained in:
Colin Wong 2021-01-13 20:32:10 +00:00
parent 55efad9bf0
commit 95802b8fe2
42 changed files with 16 additions and 100 deletions

View file

@ -25,6 +25,7 @@ import java.util.List;
@ZenRegister
public class Compost {
@SuppressWarnings("deprecation")
@ZenMethod
public static void addRecipe(IItemStack output, IItemStack outputDisplay, IIngredient input, IItemStack inputDisplay) {
if(!InputHelper.isABlock(outputDisplay) || !InputHelper.isABlock(inputDisplay)) {

View file

@ -99,7 +99,7 @@ public class Anvil {
if(ingredients == null)
return null;
else {
ArrayList prep = new ArrayList();
ArrayList<Object> prep = new ArrayList<>();
char chr = 'a';
for(int y = 0; y < 4; y++) {
StringBuilder matrix = new StringBuilder();

View file

@ -1,7 +1,6 @@
package com.blamejared.compat.betterwithmods;
import betterwithmods.common.registry.BellowsManager;
import betterwithmods.module.hardcore.world.HCBuoy;
import betterwithmods.util.item.Stack;
import betterwithmods.util.item.StackMap;
import com.blamejared.ModTweaker;

View file

@ -2,8 +2,6 @@ package com.blamejared.compat.betterwithmods;
import betterwithmods.common.BWRegistry;
import betterwithmods.common.registry.bulk.manager.CraftingManagerBulk;
import betterwithmods.common.registry.bulk.recipes.CookingPotRecipe;
import com.blamejared.compat.betterwithmods.base.bulkrecipes.CookingPotBuilder;
import crafttweaker.annotations.ModOnly;
import crafttweaker.annotations.ZenRegister;
@ -13,8 +11,6 @@ import stanhebben.zenscript.annotations.NotNull;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;
import java.util.function.Supplier;
@ZenClass("mods.betterwithmods.Cauldron")
@ModOnly("betterwithmods")
@ZenRegister

View file

@ -2,8 +2,6 @@ package com.blamejared.compat.betterwithmods;
import betterwithmods.common.BWRegistry;
import betterwithmods.common.registry.bulk.manager.CraftingManagerBulk;
import betterwithmods.common.registry.bulk.recipes.CookingPotRecipe;
import com.blamejared.compat.betterwithmods.base.bulkrecipes.CookingPotBuilder;
import crafttweaker.annotations.ModOnly;
import crafttweaker.annotations.ZenRegister;
@ -13,8 +11,6 @@ import stanhebben.zenscript.annotations.NotNull;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;
import java.util.function.Supplier;
@ZenClass("mods.betterwithmods.Crucible")
@ModOnly("betterwithmods")
@ZenRegister

View file

@ -26,6 +26,7 @@ public class HeatRegistry {
CraftTweakerAPI.apply(new AddHeatSource(CraftTweakerMC.getBlockState(state), heat));
}
@SuppressWarnings("deprecation")
@ZenMethod
public static void addHeatSource(IItemStack stack, int heat) {
if (InputHelper.isABlock(stack)) {

View file

@ -4,7 +4,6 @@ import betterwithmods.api.tile.IHopperFilter;
import betterwithmods.common.BWRegistry;
import betterwithmods.common.registry.HopperFilter;
import betterwithmods.common.registry.HopperInteractions;
import betterwithmods.module.gameplay.HopperRecipes;
import com.blamejared.ModTweaker;
import com.blamejared.mtlib.helpers.LogHelper;
import com.blamejared.mtlib.utils.BaseAction;

View file

@ -3,12 +3,9 @@ package com.blamejared.compat.betterwithmods;
import betterwithmods.common.BWMRecipes;
import betterwithmods.common.BWRegistry;
import betterwithmods.common.registry.KilnStructureManager;
import betterwithmods.common.registry.block.managers.CraftingManagerBlock;
import betterwithmods.common.registry.block.recipe.KilnRecipe;
import com.blamejared.ModTweaker;
import com.blamejared.compat.betterwithmods.base.blockrecipes.KilnBuilder;
import com.blamejared.mtlib.helpers.InputHelper;
import com.blamejared.mtlib.helpers.LogHelper;
import com.blamejared.mtlib.utils.BaseAction;
import crafttweaker.annotations.ModOnly;
import crafttweaker.annotations.ZenRegister;
@ -20,7 +17,6 @@ import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;
import javax.annotation.Nonnull;
import java.util.function.Supplier;
@ZenClass("mods.betterwithmods.Kiln")
@ModOnly("betterwithmods")

View file

@ -2,8 +2,6 @@ package com.blamejared.compat.betterwithmods;
import betterwithmods.common.BWRegistry;
import betterwithmods.common.registry.bulk.manager.CraftingManagerBulk;
import betterwithmods.common.registry.bulk.recipes.MillRecipe;
import com.blamejared.compat.betterwithmods.base.bulkrecipes.MillBuilder;
import crafttweaker.annotations.ModOnly;
import crafttweaker.annotations.ZenRegister;
@ -13,8 +11,6 @@ import stanhebben.zenscript.annotations.NotNull;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;
import java.util.function.Supplier;
@ZenClass("mods.betterwithmods.Mill")
@ModOnly("betterwithmods")
@ZenRegister

View file

@ -1,17 +1,12 @@
package com.blamejared.compat.betterwithmods;
import betterwithmods.common.registry.BellowsManager;
import betterwithmods.module.hardcore.crafting.HCFurnace;
import betterwithmods.util.item.Stack;
import betterwithmods.util.item.StackMap;
import com.blamejared.ModTweaker;
import com.blamejared.mtlib.utils.BaseMapAddition;
import com.google.common.collect.Maps;
import crafttweaker.annotations.ModOnly;
import crafttweaker.annotations.ZenRegister;
import crafttweaker.api.item.IIngredient;
import crafttweaker.api.minecraft.CraftTweakerMC;
import crafttweaker.mc1120.CraftTweaker;
import net.minecraft.item.crafting.Ingredient;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;

View file

@ -19,6 +19,7 @@ import stanhebben.zenscript.annotations.ZenMethod;
@ZenRegister
public class Movement {
@SuppressWarnings("deprecation")
@ZenMethod
public static void set(IItemStack input, float speed) {
ItemStack stack = InputHelper.toStack(input);

View file

@ -3,7 +3,6 @@ package com.blamejared.compat.betterwithmods;
import betterwithmods.common.BWRegistry;
import com.blamejared.compat.betterwithmods.base.blockrecipes.SawBuilder;
import com.blamejared.mtlib.helpers.LogHelper;
import crafttweaker.annotations.ModOnly;
import crafttweaker.annotations.ZenRegister;
import crafttweaker.api.item.IIngredient;

View file

@ -3,7 +3,6 @@ package com.blamejared.compat.betterwithmods;
import betterwithmods.common.BWMRecipes;
import betterwithmods.common.BWRegistry;
import com.blamejared.compat.betterwithmods.base.blockrecipes.TurntableBuilder;
import com.blamejared.mtlib.helpers.LogHelper;
import crafttweaker.annotations.ModOnly;
import crafttweaker.annotations.ZenRegister;
import crafttweaker.api.item.IIngredient;

View file

@ -7,7 +7,6 @@ import betterwithmods.common.registry.block.recipe.BlockRecipe;
import com.blamejared.ModTweaker;
import com.blamejared.compat.betterwithmods.base.RemoveAll;
import com.blamejared.mtlib.helpers.InputHelper;
import com.blamejared.mtlib.helpers.LogHelper;
import crafttweaker.api.item.IIngredient;
import crafttweaker.api.item.IItemStack;
import crafttweaker.api.minecraft.CraftTweakerMC;
@ -49,13 +48,13 @@ public abstract class BlockRecipeBuilder<T extends BlockRecipe> {
}
@ZenMethod
public BlockRecipeBuilder setInputBlockDrop(IItemStack input) {
public BlockRecipeBuilder<? extends BlockRecipe> setInputBlockDrop(IItemStack input) {
this.input = new BlockDropIngredient(CraftTweakerMC.getItemStack(input));
return this;
}
@ZenMethod
public BlockRecipeBuilder setInputBlockDrop(IItemStack[] inputs) {
public BlockRecipeBuilder<? extends BlockRecipe> setInputBlockDrop(IItemStack[] inputs) {
this.input = new BlockDropIngredient(CraftTweakerMC.getItemStacks(inputs));
return this;
}

View file

@ -5,13 +5,9 @@ import betterwithmods.common.registry.block.recipe.BlockRecipe;
import com.blamejared.mtlib.helpers.InputHelper;
import com.blamejared.mtlib.helpers.LogHelper;
import com.blamejared.mtlib.utils.BaseAction;
import com.google.common.collect.Lists;
import crafttweaker.api.item.IItemStack;
import net.minecraft.item.ItemStack;
import java.util.List;
import java.util.stream.Collectors;
public class BlockRecipeRemoveInput<T extends BlockRecipe> extends BaseAction {
private final ItemStack input;

View file

@ -1,9 +1,7 @@
package com.blamejared.compat.betterwithmods.base.blockrecipes;
import betterwithmods.common.BWMRecipes;
import betterwithmods.common.BWRegistry;
import betterwithmods.common.registry.block.managers.CraftingManagerBlock;
import betterwithmods.common.registry.block.recipe.BlockRecipe;
import betterwithmods.common.registry.block.recipe.TurntableRecipe;
import com.blamejared.ModTweaker;
import com.blamejared.mtlib.helpers.InputHelper;
@ -13,10 +11,8 @@ import crafttweaker.api.item.IIngredient;
import crafttweaker.api.item.IItemStack;
import crafttweaker.api.minecraft.CraftTweakerMC;
import net.minecraft.block.Block;
import net.minecraft.block.state.BlockStateContainer;
import net.minecraft.block.state.IBlockState;
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemStack;
import stanhebben.zenscript.annotations.ZenMethod;
import java.util.function.Supplier;
@ -35,6 +31,7 @@ public class TurntableBuilder extends BlockRecipeBuilder<TurntableRecipe> {
return this;
}
@SuppressWarnings("deprecation")
@ZenMethod
public TurntableBuilder setProductState(IItemStack productState) {
if (InputHelper.isABlock(productState)) {

View file

@ -4,8 +4,6 @@ import betterwithmods.common.registry.bulk.manager.CraftingManagerBulk;
import betterwithmods.common.registry.bulk.recipes.MillRecipe;
import crafttweaker.api.item.IIngredient;
import crafttweaker.api.item.IItemStack;
import net.minecraft.util.SoundEvent;
import net.minecraftforge.fml.common.registry.ForgeRegistries;
import stanhebben.zenscript.annotations.ZenMethod;
import java.util.function.Supplier;

View file

@ -7,7 +7,7 @@ import java.util.Map;
public class LocalizationHelper {
@SuppressWarnings("unchecked")
public static void setLocale(String unlocalized, String localized) {
try {
Field locale = I18n.class.getDeclaredField("i18nLocale");

View file

@ -1,7 +1,6 @@
package com.blamejared.compat.botania.handlers;
import com.blamejared.ModTweaker;
import crafttweaker.CraftTweakerAPI;
import crafttweaker.IAction;
import crafttweaker.annotations.ModOnly;
import crafttweaker.annotations.ZenRegister;

View file

@ -19,8 +19,6 @@ import crafttweaker.api.item.IItemStack;
import crafttweaker.api.liquid.ILiquidStack;
import net.minecraft.block.Block;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;
import stanhebben.zenscript.annotations.Optional;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;
import vazkii.botania.api.BotaniaAPI;
@ -39,6 +37,7 @@ public class PureDaisy {
addRecipe(blockInput, blockOutput, 150);
}
@SuppressWarnings("deprecation")
@ZenMethod
public static void addRecipe(IIngredient blockInput, IItemStack blockOutput, int time) {
if(blockInput == null || blockOutput == null) {

View file

@ -6,16 +6,12 @@ import crafttweaker.CraftTweakerAPI;
import crafttweaker.IAction;
import crafttweaker.api.item.IItemStack;
import net.minecraft.item.ItemStack;
import vazkii.botania.api.lexicon.LexiconEntry;
import vazkii.botania.api.lexicon.LexiconRecipeMappings;
import vazkii.botania.api.lexicon.LexiconRecipeMappings.EntryData;
public class RemoveRecipeMapping implements IAction {
private ItemStack stack;
private IItemStack iStack;
private LexiconEntry entry;
private int page;
public RemoveRecipeMapping(IItemStack stack) {
this.iStack = stack;
@ -27,9 +23,6 @@ public class RemoveRecipeMapping implements IAction {
CraftTweakerAPI.getLogger().logError("There isn't a recipe mapping for " + iStack);
return;
}
EntryData data = LexiconRecipeMappings.getDataForStack(stack);
this.entry = data.entry;
this.page = data.page;
LexiconRecipeMappings.remove(stack);
CraftTweakerAPI.getLogger().logInfo("Removing Lexicon Recipe Lookup: " + stack.getUnlocalizedName());
}

View file

@ -10,7 +10,6 @@ import vazkii.botania.api.lexicon.LexiconCategory;
public class SetCategoryIcon implements IAction {
private LexiconCategory category;
private ResourceLocation oldIcon;
private ResourceLocation newIcon;
private final String name;
@ -26,7 +25,6 @@ public class SetCategoryIcon implements IAction {
CraftTweakerAPI.getLogger().logError("Cannot find lexicon category " + name);
return;
}
oldIcon = category.getIcon();
category.setIcon(newIcon);
CraftTweakerAPI.getLogger().logInfo("Setting Lexicon Category icon: " + category.getUnlocalizedName());
}

View file

@ -4,7 +4,6 @@ import com.blamejared.compat.botania.BotaniaHelper;
import crafttweaker.CraftTweakerAPI;
import crafttweaker.IAction;
import crafttweaker.mc1120.brackets.BracketHandlerItem;
import vazkii.botania.api.lexicon.LexiconCategory;
public class SetCategoryPriority implements IAction {
@ -28,12 +27,12 @@ public class SetCategoryPriority implements IAction {
}
oldPriority = category.getSortingPriority();
category.setPriority(newPriority);
CraftTweakerAPI.getLogger().logInfo("Setting Lexicon Category priority: " + category.getUnlocalizedName());
CraftTweakerAPI.getLogger().logInfo("Setting Lexicon Category priority from " + oldPriority + " to: " + category.getUnlocalizedName());
}
@Override
public String describe() {
return "Attempting to set the priority for Lexicon Category " + name + " to " + newPriority;
return "Attempting to set the priority for Lexicon Category " + name + " from " + oldPriority + "to " + newPriority;
}
}

View file

@ -2,17 +2,12 @@ package com.blamejared.compat.botania.lexicon.pages;
import com.blamejared.compat.botania.BotaniaHelper;
import crafttweaker.*;
import crafttweaker.api.item.IIngredient;
import net.minecraft.util.ResourceLocation;
import vazkii.botania.api.BotaniaAPI;
import vazkii.botania.api.lexicon.*;
import vazkii.botania.api.recipe.RecipeBrew;
import vazkii.botania.common.lexicon.page.*;
import java.util.*;
import static com.blamejared.mtlib.helpers.InputHelper.toObjects;
public class AddPageCrafting implements IAction {
private String name;

View file

@ -3,7 +3,6 @@ package com.blamejared.compat.botania.lexicon.pages;
import com.blamejared.compat.botania.BotaniaHelper;
import crafttweaker.*;
import crafttweaker.api.item.*;
import vazkii.botania.api.BotaniaAPI;
import vazkii.botania.api.lexicon.*;
import vazkii.botania.api.recipe.*;
import vazkii.botania.common.lexicon.page.*;

View file

@ -2,17 +2,11 @@ package com.blamejared.compat.botania.lexicon.pages;
import com.blamejared.compat.botania.BotaniaHelper;
import crafttweaker.*;
import crafttweaker.api.item.*;
import net.minecraft.entity.EntityList;
import net.minecraft.util.ResourceLocation;
import vazkii.botania.api.lexicon.*;
import vazkii.botania.api.recipe.RecipeElvenTrade;
import vazkii.botania.common.lexicon.page.*;
import java.util.*;
import static com.blamejared.mtlib.helpers.InputHelper.*;
public class AddPageEntity implements IAction {
private String name;

View file

@ -2,8 +2,6 @@ package com.blamejared.compat.botania.lexicon.pages;
import com.blamejared.compat.botania.BotaniaHelper;
import crafttweaker.*;
import net.minecraft.entity.EntityList;
import net.minecraft.util.ResourceLocation;
import vazkii.botania.api.lexicon.*;
import vazkii.botania.common.lexicon.page.*;

View file

@ -2,15 +2,9 @@ package com.blamejared.compat.botania.lexicon.pages;
import com.blamejared.compat.botania.BotaniaHelper;
import crafttweaker.*;
import crafttweaker.api.item.*;
import vazkii.botania.api.lexicon.*;
import vazkii.botania.api.recipe.RecipeManaInfusion;
import vazkii.botania.common.lexicon.page.*;
import java.util.*;
import static com.blamejared.mtlib.helpers.InputHelper.*;
public class AddPageText implements IAction {
private String name;

View file

@ -4,9 +4,6 @@ import crafttweaker.CraftTweakerAPI;
import crafttweaker.mc1120.commands.*;
import net.minecraft.command.ICommandSender;
import net.minecraft.server.MinecraftServer;
import net.minecraft.util.text.TextFormatting;
import slimeknights.tconstruct.library.TinkerRegistry;
import slimeknights.tconstruct.library.materials.*;
import team.chisel.api.carving.CarvingUtils;
import static crafttweaker.mc1120.commands.SpecialMessagesChat.*;

View file

@ -46,6 +46,7 @@ public class Carpenter {
ModTweaker.LATE_ADDITIONS.add(new Add(new CarpenterRecipe(packagingTime, toFluid(fluidInput), toStack(box), new ShapedRecipeCustom(toStack(output), toShapedObjects(ingredients)))));
}
@SuppressWarnings("unused")
private static IItemStack[][] transform(IItemStack[] arr, int N) {
int M = (arr.length + N - 1) / N;
IItemStack[][] mat = new IItemStack[M][];

View file

@ -17,11 +17,7 @@ import forestry.api.fuels.FuelManager;
import forestry.api.recipes.IFermenterRecipe;
import forestry.api.recipes.RecipeManagers;
import forestry.factory.recipes.FermenterRecipe;
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.FluidRegistry;
import net.minecraftforge.fluids.FluidStack;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;

View file

@ -10,19 +10,14 @@ import crafttweaker.api.item.IIngredient;
import crafttweaker.api.item.IItemStack;
import crafttweaker.api.item.WeightedItemStack;
import crafttweaker.api.liquid.ILiquidStack;
import crafttweaker.mc1120.item.MCItemStack;
import crafttweaker.mc1120.liquid.MCLiquidStack;
import forestry.api.recipes.ISqueezerRecipe;
import forestry.api.recipes.RecipeManagers;
import forestry.core.fluids.FluidHelper;
import forestry.factory.recipes.*;
import net.minecraft.item.ItemStack;
import stanhebben.zenscript.annotations.Optional;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;
import java.util.*;
import static com.blamejared.mtlib.helpers.InputHelper.*;
import static com.blamejared.mtlib.helpers.StackHelper.matches;

View file

@ -6,7 +6,6 @@ import com.blamejared.mtlib.utils.BaseAddForestry;
import com.blamejared.mtlib.utils.BaseRemoveForestry;
import crafttweaker.annotations.ModOnly;
import crafttweaker.annotations.ZenRegister;
import crafttweaker.api.item.IIngredient;
import crafttweaker.api.liquid.ILiquidStack;
import forestry.api.recipes.IStillRecipe;
import forestry.api.recipes.RecipeManagers;

View file

@ -17,8 +17,6 @@ import forestry.factory.recipes.FabricatorRecipe;
import forestry.factory.recipes.FabricatorSmeltingRecipe;
import net.minecraft.item.ItemStack;
import net.minecraft.util.NonNullList;
import net.minecraftforge.fluids.FluidRegistry;
import net.minecraftforge.fluids.FluidStack;
import stanhebben.zenscript.annotations.Optional;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;

View file

@ -7,7 +7,6 @@ import crafttweaker.annotations.ModOnly;
import crafttweaker.annotations.ZenRegister;
import crafttweaker.api.liquid.ILiquidStack;
import ferro2000.immersivetech.api.craftings.BoilerRecipes;
import ferro2000.immersivetech.api.craftings.SolarTowerRecipes;
import net.minecraftforge.fluids.FluidStack;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;

View file

@ -13,7 +13,6 @@ import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;
import stanhebben.zenscript.definitions.zenclasses.ParsedZenClassMethod;
@ZenClass("mods.immersivetech.Distiller")
@ZenRegister

View file

@ -21,7 +21,6 @@ import net.minecraftforge.oredict.OreDictionary;
import slimeknights.mantle.util.RecipeMatch;
import slimeknights.tconstruct.library.TinkerRegistry;
import slimeknights.tconstruct.library.events.TinkerRegisterEvent;
import slimeknights.tconstruct.library.smeltery.MeltingRecipe;
import stanhebben.zenscript.annotations.Optional;
import stanhebben.zenscript.annotations.*;

View file

@ -26,8 +26,6 @@ public class BracketHandlerAspect implements IBracketHandler {
method = CraftTweakerAPI.getJavaMethod(BracketHandlerAspect.class, "getAspect", String.class);
}
@SuppressWarnings("unchecked")
public static void rebuildRegistry() {
aspects.clear();
Aspect.aspects.forEach(aspects::put);

View file

@ -15,6 +15,7 @@ import thaumcraft.api.internal.CommonInternals;
@ZenRegister
public class IEntityAspectExpansion {
@SuppressWarnings("deprecation")
@ZenMethod
public static void setAspects(IEntityDefinition definition, CTAspectStack... aspects) {
ModTweaker.LATE_ADDITIONS.add(new BaseAction("Aspects") {
@ -43,6 +44,7 @@ public class IEntityAspectExpansion {
});
}
@SuppressWarnings("deprecation")
@ZenMethod
public static void removeAspects(IEntityDefinition definition, CTAspectStack... aspects) {
ModTweaker.LATE_REMOVALS.add(new BaseAction("Aspects") {

View file

@ -10,13 +10,12 @@ import stanhebben.zenscript.annotations.*;
import thaumcraft.api.ThaumcraftApi;
import thaumcraft.api.aspects.AspectList;
import java.util.*;
@ZenExpansion("crafttweaker.item.IItemStack")
@ModOnly("thaumcraft")
@ZenRegister
public class IItemAspectExpansion {
@SuppressWarnings("deprecation")
@ZenMethod
public static void setAspects(IItemStack stack, CTAspectStack... aspects) {
ModTweaker.LATE_ADDITIONS.add(new BaseAction("Aspects") {
@ -46,7 +45,7 @@ public class IItemAspectExpansion {
}
@SuppressWarnings("deprecation")
@ZenMethod
public static void removeAspects(IItemStack stack, CTAspectStack... aspects) {
ModTweaker.LATE_REMOVALS.add(new BaseAction("Aspects") {

View file

@ -5,7 +5,6 @@ import com.blamejared.compat.thaumcraft.handlers.ThaumCraft;
import com.blamejared.compat.thaumcraft.handlers.aspects.CTAspectStack;
import com.blamejared.mtlib.helpers.*;
import com.blamejared.mtlib.utils.BaseAction;
import com.blamejared.reference.Reference;
import crafttweaker.annotations.*;
import crafttweaker.api.item.*;
import crafttweaker.api.minecraft.CraftTweakerMC;

View file

@ -5,7 +5,6 @@ import com.blamejared.compat.thaumcraft.handlers.ThaumCraft;
import com.blamejared.compat.thaumcraft.handlers.aspects.CTAspectStack;
import com.blamejared.mtlib.helpers.InputHelper;
import com.blamejared.mtlib.utils.BaseAction;
import com.blamejared.reference.Reference;
import crafttweaker.annotations.*;
import crafttweaker.api.item.*;
import net.minecraft.item.ItemStack;