|
157 | 157 | * @method static Item EMERALD() |
158 | 158 | * @method static EnchantedBook ENCHANTED_BOOK() |
159 | 159 | * @method static GoldenAppleEnchanted ENCHANTED_GOLDEN_APPLE() |
160 | | - * @method static Item ENDER_EYE() |
| 160 | + * @method static EnderEye ENDER_EYE() |
161 | 161 | * @method static EnderPearl ENDER_PEARL() |
162 | 162 | * @method static EndCrystal END_CRYSTAL() |
163 | 163 | * @method static ExperienceBottle EXPERIENCE_BOTTLE() |
@@ -489,6 +489,8 @@ protected static function setup() : void{ |
489 | 489 | self::register("emerald", fn(IID $id) => new Item($id, "Emerald")); |
490 | 490 | self::register("enchanted_book", fn(IID $id) => new EnchantedBook($id, "Enchanted Book", [EnchantmentTags::ALL])); |
491 | 491 | self::register("enchanted_golden_apple", fn(IID $id) => new GoldenAppleEnchanted($id, "Enchanted Golden Apple")); |
| 492 | + self::register("end_crystal", fn(IID $id) => new EndCrystal($id, "End Crystal")); |
| 493 | + self::register("ender_eye", fn(IID $id) => new EnderEye($id, "Ender Eye")); |
492 | 494 | self::register("ender_pearl", fn(IID $id) => new EnderPearl($id, "Ender Pearl")); |
493 | 495 | self::register("experience_bottle", fn(IID $id) => new ExperienceBottle($id, "Bottle o' Enchanting")); |
494 | 496 | self::register("feather", fn(IID $id) => new Item($id, "Feather")); |
|
0 commit comments