Hello all! I am trying to add a lighter to a simple mod for my friends and I and I am trying to make the lighter not repairable by any means. When creating and registering the item I "attached" the setNoRepair method using dot notation but the item can still be repaired in an anvil with another lighter. My code for registering the item is below. If I am making a stupid mistake please let me know:
public static final RegistryObject<Item> WHITE_BASIC_LIGHTER = ITEMS.register("white_basic_lighter", () -> new BasicLighterItem(new Item.Properties().tab(ModCreativeModeTab.MOD_TAB).durability(16).setNoRepair()));
Any help would be awesome!