diff --git a/src/main/java/fun/ogre/ogredupealias/plugin/custom/forging/CraftingKeys.java b/src/main/java/fun/ogre/ogredupealias/plugin/custom/forging/CraftingKeys.java index 0071680..97a4605 100644 --- a/src/main/java/fun/ogre/ogredupealias/plugin/custom/forging/CraftingKeys.java +++ b/src/main/java/fun/ogre/ogredupealias/plugin/custom/forging/CraftingKeys.java @@ -14,10 +14,10 @@ public abstract class CraftingKeys { public static void initRecipes() { // my custom register(ItemPresets.BLUE_LAZER_DIODE, "[beacon{}, beacon{}, beacon{}, beacon{}, beacon{}, beacon{}, beacon{}, beacon{}, beacon{}]"); - register(ItemPresets.RAILGUN, "[light_blue_candle{CustomModelData:1111,display:{Lore:['{\"extra\":[{\"bold\":false,\"italic\":false,\"underlined\":false,\"strikethrough\":false,\"obfuscated\":false,\"color\":\"gray\",\"text\":\"- Use this to craft the \"},{\"italic\":false,\"color\":\"aqua\",\"text\":\"lazer guns\"}],\"text\":\"\"}'],Name:'{\"extra\":[{\"bold\":false,\"italic\":false,\"underlined\":false,\"strikethrough\":false,\"obfuscated\":false,\"color\":\"aqua\",\"text\":\"Blue Lazer Diode\"}],\"text\":\"\"}'}}, diamond{}, iron_block{}, air{}, air{}, iron_block{}, air{}, air{}, air{}]"); + //register(ItemPresets.RAILGUN, "[light_blue_candle{CustomModelData:1111,display:{Lore:['{\"extra\":[{\"bold\":false,\"italic\":false,\"underlined\":false,\"strikethrough\":false,\"obfuscated\":false,\"color\":\"gray\",\"text\":\"- Use this to craft the \"},{\"italic\":false,\"color\":\"aqua\",\"text\":\"lazer guns\"}],\"text\":\"\"}'],Name:'{\"extra\":[{\"bold\":false,\"italic\":false,\"underlined\":false,\"strikethrough\":false,\"obfuscated\":false,\"color\":\"aqua\",\"text\":\"Blue Lazer Diode\"}],\"text\":\"\"}'}}, diamond{}, iron_block{}, air{}, air{}, iron_block{}, air{}, air{}, air{}]"); register(ItemPresets.SPBRifle, "[iron_horse_armor{}]"); register(ItemPresets.POTATOCANNON, "[potato{}, potato{}, potato{}, potato{}, golden_hoe{}, potato{}, potato{}, potato{}, potato{}]"); - register(ItemPresets.LASER_POINTER, "[polished_blackstone_button{}, lime_concrete{}, lime_stained_glass{}, lime_concrete{}, diamond{}, lime_concrete{}, stick{}, lime_concrete{}, air{}]"); + //register(ItemPresets.LASER_POINTER, "[polished_blackstone_button{}, lime_concrete{}, lime_stained_glass{}, lime_concrete{}, diamond{}, lime_concrete{}, stick{}, lime_concrete{}, air{}]"); register(ItemPresets.DEFENDER, "[iron_nugget{}, iron_nugget{}, iron_nugget{}, iron_nugget{}, prismarine_shard{}, iron_nugget{}, iron_nugget{}, iron_nugget{}, iron_nugget{}]"); register(ItemPresets.ADMIN_UTILITY, "[air{}, air{}, barrier{}, air{}, blaze_rod{}, air{}, blaze_rod{}, air{}, air{}]"); register(ItemPresets.NETSKY_BLADE, "[end_crystal{}, ender_pearl{}]"); diff --git a/src/main/java/fun/ogre/ogredupealias/plugin/custom/items/CustomItems.java b/src/main/java/fun/ogre/ogredupealias/plugin/custom/items/CustomItems.java index 354ef7d..8e4b084 100644 --- a/src/main/java/fun/ogre/ogredupealias/plugin/custom/items/CustomItems.java +++ b/src/main/java/fun/ogre/ogredupealias/plugin/custom/items/CustomItems.java @@ -19,10 +19,10 @@ public final class CustomItems implements Listener { private static final Map, String> namesList = new HashMap<>(); public static void init() { - register(new TazerItem()); - register(new LazerItem()); - register(new RailgunItem()); - register(new LazerGunItem()); + //register(new TazerItem()); + //register(new LazerItem()); + //register(new RailgunItem()); + //register(new LazerGunItem()); } public static ItemStack register(ItemStack item, CustomItemInteractionCallback interactionCallback) {