Skip to content

Commit

Permalink
Fixed #5 and #6
Browse files Browse the repository at this point in the history
  • Loading branch information
Minemobs committed May 5, 2024
1 parent 3c163a5 commit 8d9e4f0
Show file tree
Hide file tree
Showing 30 changed files with 12 additions and 23 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

# Mod
mod_version=2.0.0-alpha.3+1.18.2
mod_version=2.0.0-alpha.4+1.18.2
mod_group=top.theillusivec4.constructsarmory
mod_id=constructsarmory
mod_name=Construct's Armory
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"type": "tconstruct:tool_building",
"result": "constructsarmory:material_armor_boots"
"result": "constructsarmory:material_armor_boots",
"result_count": 1
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"type": "tconstruct:tool_building",
"result": "constructsarmory:material_armor_chestplate"
"result": "constructsarmory:material_armor_chestplate",
"result_count": 1
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"type": "tconstruct:tool_building",
"result": "constructsarmory:material_armor_helmet"
"result": "constructsarmory:material_armor_helmet",
"result_count": 1
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"type": "tconstruct:tool_building",
"result": "constructsarmory:material_armor_leggings"
"result": "constructsarmory:material_armor_leggings",
"result_count": 1
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
import javax.annotation.Nonnull;
import net.minecraft.data.DataGenerator;
import net.minecraft.data.recipes.FinishedRecipe;
import net.minecraft.data.recipes.RecipeProvider;
import org.jetbrains.annotations.NotNull;
import slimeknights.tconstruct.common.data.BaseRecipeProvider;
import slimeknights.tconstruct.library.data.recipe.IMaterialRecipeHelper;
import slimeknights.tconstruct.library.data.recipe.IToolRecipeHelper;
import slimeknights.tconstruct.library.tools.item.ModifiableArmorItem;
Expand All @@ -30,7 +30,7 @@

import java.util.function.Consumer;

public class ArmorRecipeProvider extends BaseRecipeProvider implements IMaterialRecipeHelper, IToolRecipeHelper {
public class ArmorRecipeProvider extends RecipeProvider implements IMaterialRecipeHelper, IToolRecipeHelper {

public ArmorRecipeProvider(DataGenerator generator) {
super(generator);
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/constructsarmory/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
"modifier.constructsarmory.aerial.flavor": "Take to the skies!",
"modifier.constructsarmory.aerial.description": "Increased movement speed at high elevations",
"modifier.constructsarmory.aerial.speed": "Aerial Speed",
"modifier.constructsarmory.reinforced": "Reinforced",
"__comment": "Tier 2 Addon Traits",
"modifier.constructsarmory.dense": "Dense",
"modifier.constructsarmory.dense.flavor": "Barely loses its shape",
Expand Down

0 comments on commit 8d9e4f0

Please sign in to comment.