9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2025-12-26 02:19:21 +00:00
This commit is contained in:
XiaoMoMi
2023-10-10 23:21:43 +08:00
parent ca19b99768
commit 02c417ba3d
3 changed files with 5 additions and 0 deletions

View File

@@ -113,6 +113,8 @@ public class BaitEditor implements ItemPage {
items.add(new ItemFlagItem(this));
items.add(new Head64Item(this));
items.add(new NBTItem(this));
items.add(new EnchantmentItem(this));
items.add(new StoredEnchantmentItem(this));
return items;
}

View File

@@ -113,6 +113,8 @@ public class HookEditor implements ItemPage {
items.add(new ItemFlagItem(this));
items.add(new Head64Item(this));
items.add(new NBTItem(this));
items.add(new EnchantmentItem(this));
items.add(new StoredEnchantmentItem(this));
return items;
}

View File

@@ -111,6 +111,7 @@ public class RodEditor implements ItemPage {
items.add(new RandomDurabilityItem(this));
items.add(new ItemFlagItem(this));
items.add(new NBTItem(this));
items.add(new EnchantmentItem(this));
return items;
}