Skip to content

Commit

Permalink
Melty endy matter
Browse files Browse the repository at this point in the history
  • Loading branch information
kckarnige committed Aug 20, 2024
1 parent 585e33c commit ee68b3d
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 10 deletions.
Binary file added oye.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified oye.psd
Binary file not shown.
Binary file added oyet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/java/com/kckarnige/oye/item/ModItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

public class ModItems {

public static final Item VOID_MATTER = registerItem("void_matter", new Item(new Item.Settings()));
public static final Item VOID_MATTER = registerItem("end_matter", new Item(new Item.Settings()));

private static void addItemToIngredientItemGroup(FabricItemGroupEntries entries) {
entries.add(VOID_MATTER);
Expand All @@ -23,7 +23,7 @@ private static Item registerItem (String name, Item item) {
}

public static void registerModItems () {
oye.LOGGER.info("Registering Void Matter item... - " + oye.MOD_ID);
oye.LOGGER.info("Registering End Catalyst item... - " + oye.MOD_ID);

ItemGroupEvents.modifyEntriesEvent(ItemGroups.INGREDIENTS).register(ModItems::addItemToIngredientItemGroup);
}
Expand Down
Binary file modified src/main/resources/assets/oye/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main/resources/assets/oye/lang/en_gb.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"item.oye.void_matter": "Ender"
"item.oye.end_matter": "End Catalyst"
}
2 changes: 1 addition & 1 deletion src/main/resources/assets/oye/lang/en_us.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"item.oye.void_matter": "Ender"
"item.oye.end_matter": "End Catalyst"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "oye:item/void_matter"
"layer0": "oye:item/end_matter"
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/resources/data/minecraft/recipe/ender_eye.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"key": {
"E": {
"item": "oye:void_matter"
"item": "oye:end_matter"
},
"P": {
"item": "minecraft:ender_pearl"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
" M ",
"PMP",
"ESE",
" B "
"PBP"
],
"key": {
"S": {
Expand All @@ -18,10 +18,13 @@
},
"B": {
"item": "minecraft:blaze_powder"
},
"P": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"id": "oye:void_matter",
"count": 3
"id": "oye:end_matter",
"count": 2
}
}

0 comments on commit ee68b3d

Please sign in to comment.