Skip to content

Commit

Permalink
Fix compile and clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
andantet committed Oct 6, 2024
1 parent 5b4ea52 commit 228c051
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 24 deletions.
3 changes: 1 addition & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

MIT License

Copyright (c) 2023 Tellio's Projects
Expand All @@ -22,4 +21,4 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Clauses are as follows:
- The "Assets" (anything under paths "common/src/resources/assets/") are All Rights Reserved, unless otherwise noted.
- The "Assets" (anything under paths "common/src/resources/assets/") are All Rights Reserved, unless otherwise noted.
3 changes: 1 addition & 2 deletions src/main/generated/assets/expandedmobdrops/lang/en_us.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"item.expandedmobdrops.ancient_meat": "Ancient Chops",
"item.expandedmobdrops.ancient_steak": "Ancient Steak",
"item.expandedmobdrops.arthropod_flesh": "Arthropod Flesh",
"item.expandedmobdrops.bear_hide": "Bear Hide",
"item.expandedmobdrops.bear_meat": "Bear Meat",
Expand Down Expand Up @@ -42,7 +41,7 @@
"item.expandedmobdrops.raw_turtle": "Raw Turtle",
"item.expandedmobdrops.roasted_tendril": "Roasted Tendril",
"item.expandedmobdrops.rotten_porkchop": "Rotten Porkchop",
"item.expandedmobdrops.scaley_hide": "Scaley Hide",
"item.expandedmobdrops.scaly_hide": "Scaly Hide",
"item.expandedmobdrops.sculk_tendril": "Sculk Tendril",
"item.expandedmobdrops.sniffer_hide": "Sniffer Hide",
"item.expandedmobdrops.squid": "Squid",
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "expandedmobdrops:item/scaley_hide"
"layer0": "expandedmobdrops:item/scaly_hide"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@
import net.minecraft.block.Block;
import net.minecraft.block.enums.DoubleBlockHalf;
import net.minecraft.block.enums.SlabType;
import net.minecraft.data.client.*;
import net.minecraft.data.client.BlockStateModelGenerator;
import net.minecraft.data.client.BlockStateVariant;
import net.minecraft.data.client.BlockStateVariantMap;
import net.minecraft.data.client.ItemModelGenerator;
import net.minecraft.data.client.Models;
import net.minecraft.data.client.TextureMap;
import net.minecraft.data.client.TexturedModel;
import net.minecraft.data.client.VariantSettings;
import net.minecraft.data.client.VariantsBlockStateSupplier;
import net.minecraft.item.Item;
import net.minecraft.state.property.Properties;
import net.minecraft.state.property.Property;
Expand Down Expand Up @@ -233,7 +241,7 @@ public void generateItemModels(ItemModelGenerator itemModelGenerator) {
itemModelGenerator.register(ModItems.RAW_TURTLE, Models.GENERATED);
itemModelGenerator.register(ModItems.ROASTED_TENDRIL, Models.GENERATED);
itemModelGenerator.register(ModItems.ROTTEN_PORKCHOP, Models.GENERATED);
itemModelGenerator.register(ModItems.SCALEY_HIDE, Models.GENERATED);
itemModelGenerator.register(ModItems.SCALY_HIDE, Models.GENERATED);
itemModelGenerator.register(ModItems.SCULK_TENDRIL, Models.GENERATED);
itemModelGenerator.register(ModItems.SNIFFER_HIDE, Models.GENERATED);
itemModelGenerator.register(ModItems.SQUID, Models.GENERATED);
Expand Down Expand Up @@ -263,4 +271,4 @@ public void generateItemModels(ItemModelGenerator itemModelGenerator) {
itemModelGenerator.register(ModItems.CRITTER_MEAT, Models.GENERATED);
itemModelGenerator.register(ModItems.CRITTER_STEAK, Models.GENERATED);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,5 @@ public static void offerMeatCookingRecipes(Consumer<RecipeJsonProvider> exporter
@Override
public void generate(Consumer<RecipeJsonProvider> exporter) {
offerMeatCookingRecipes(exporter, ModItems.ANCIENT_MEAT, ModItems.COOKED_ANCIENT_MEAT);

offerMeatCookingRecipes(exporter, ModItems.ANCIENT_MEAT, ModItems.COOKED_ANCIENT_MEAT);
offerMeatCookingRecipes(exporter, ModItems.ANCIENT_MEAT, ModItems.COOKED_ANCIENT_MEAT);
offerMeatCookingRecipes(exporter, ModItems.ANCIENT_MEAT, ModItems.COOKED_ANCIENT_MEAT);
offerMeatCookingRecipes(exporter, ModItems.ANCIENT_MEAT, ModItems.COOKED_ANCIENT_MEAT);
offerMeatCookingRecipes(exporter, ModItems.ANCIENT_MEAT, ModItems.COOKED_ANCIENT_MEAT);
offerMeatCookingRecipes(exporter, ModItems.ANCIENT_MEAT, ModItems.COOKED_ANCIENT_MEAT);
offerMeatCookingRecipes(exporter, ModItems.ANCIENT_MEAT, ModItems.COOKED_ANCIENT_MEAT);

}
}

0 comments on commit 228c051

Please sign in to comment.