Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spotless apply for branch Ethryan-Patch for #62 #66

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import static witchinggadgets.common.recipes.WG_arcane_recipes.registerArcaneRecipe;

import cpw.mods.fml.common.Loader;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;

import cpw.mods.fml.common.Loader;
import thaumcraft.api.aspects.Aspect;
import thaumcraft.api.aspects.AspectList;
import thaumcraft.common.config.ConfigBlocks;
Expand Down Expand Up @@ -121,8 +121,7 @@ public static void registerArcaneBaubles() {
'B',
new ItemStack(Items.iron_ingot, 1, 0),
'S',
new ItemStack(WGContent.ItemMagicalBaubles, 1, 7)
);
new ItemStack(WGContent.ItemMagicalBaubles, 1, 7));

registerArcaneRecipe(
"WGBAUBLES",
Expand All @@ -140,20 +139,20 @@ public static void registerArcaneBaubles() {
new ItemStack(WGContent.ItemMagicalBaubles, 1, 8));
}

ItemStack luckyCoin = new ItemStack(ConfigItems.itemResource, 1, 18);
luckyCoin.addEnchantment(Enchantment.fortune, 1);
luckyCoin.addEnchantment(Enchantment.looting, 1);
registerArcaneRecipe(
"WGBAUBLES",
"_COIN",
luckyCoin,
new AspectList().add(Aspect.ORDER, 30),
"BCB",
"CCC",
"BCB",
'C',
new ItemStack(ConfigItems.itemResource, 1, 18),
'B',
Items.enchanted_book);
ItemStack luckyCoin = new ItemStack(ConfigItems.itemResource, 1, 18);
luckyCoin.addEnchantment(Enchantment.fortune, 1);
luckyCoin.addEnchantment(Enchantment.looting, 1);
registerArcaneRecipe(
"WGBAUBLES",
"_COIN",
luckyCoin,
new AspectList().add(Aspect.ORDER, 30),
"BCB",
"CCC",
"BCB",
'C',
new ItemStack(ConfigItems.itemResource, 1, 18),
'B',
Items.enchanted_book);
}
}