Skip to content

Commit

Permalink
small improvments (new release)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnAwesomGuy committed Dec 18, 2023
1 parent cedea2d commit 30b1538
Show file tree
Hide file tree
Showing 25 changed files with 20 additions and 22 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ java {
}

[jar, sourcesJar].each {
from("LICENSE") {
it.from("LICENSE") {
rename { "${it}_${archives_base_name}" }
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ org.gradle.jvmargs=-Xmx1G
archives_base_name = stone-utils

# Dependencies
fabric_version = 0.76.1+1.19.2
fabric_version = 0.77.0+1.19.2
wsmlmb_version = 1.1.0+1.19.2

# Version Range
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/net/anawesomguy/stone_utils/StoneUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ public final class StoneUtils implements ModInitializer {
.sounds(BlockSoundGroup.STONE)
.requiresTool()
).setTextures(
newID("stone_chest_normal"),
newID("stone_chest_left"),
newID("stone_chest_right")
newID("entity/chest/stone_chest_normal"),
newID("entity/chest/stone_chest_left"),
newID("entity/chest/stone_chest_right")
).build(), "stone_chest"
);
public static final Item STONE_CHEST_ITEM = registerBlockItem(STONE_CHEST, "stone_chest");
Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/assets/stone_utils/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"item.stone_utils.baked_shears_part": "Ceramic Shears Part",
"item.stone_utils.ceramic_shears": "Ceramic Shears",
"item.stone_utils.raw_shears_part": "Clay Shears Part",
"item.stone_utils.stone_chest": "Stone Chest",
"item.stone_utils.stone_crafting_table": "Stone Crafting Table",
"item.stone_utils.stone_part": "Stone Part",
"item.stone_utils.stone_rod": "Stone Rod",
"item.stone_utils.stone_shears": "Stone Shears",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"parent": "block/cube",
"textures": {
"particle": "stone_utils:crafting_table_front",
"north": "stone_utils:crafting_table_front",
"south": "stone_utils:crafting_table_side",
"east": "stone_utils:crafting_table_side",
"west": "stone_utils:crafting_table_front",
"up": "stone_utils:crafting_table_top",
"particle": "stone_utils:block/crafting_table_front",
"north": "stone_utils:block/crafting_table_front",
"south": "stone_utils:block/crafting_table_side",
"east": "stone_utils:block/crafting_table_side",
"west": "stone_utils:block/crafting_table_front",
"up": "stone_utils:block/crafting_table_top",
"down": "block/cobblestone"
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"parent": "item/generated",
"textures": {"layer0": "stone_utils:baked_shears_part"}
"textures": {"layer0": "stone_utils:item/baked_shears_part"}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"parent": "item/generated",
"textures": {"layer0": "stone_utils:ceramic_shears"}
"textures": {"layer0": "stone_utils:item/ceramic_shears"}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"parent": "item/generated",
"textures": {"layer0": "stone_utils:raw_shears_part"}
"textures": {"layer0": "stone_utils:item/raw_shears_part"}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"parent": "stone_utils:block/crafting_table"}
{"parent": "stone_utils:item/block/crafting_table"}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"parent": "item/generated",
"textures": {"layer0": "stone_utils:stone_part"}
"textures": {"layer0": "stone_utils:item/stone_part"}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"parent": "item/generated",
"textures": {"layer0": "stone_utils:stone_rod"}
"textures": {"layer0": "stone_utils:item/stone_rod"}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"parent": "item/generated",
"textures": {"layer0": "stone_utils:stone_shears"}
"textures": {"layer0": "stone_utils:item/stone_shears"}
}
4 changes: 2 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Adds utilities for living in the stone age. Specifically, stone shears, stone chests, stone crafting tables, and ceramic (clay) shears.",
"authors": ["AnAwesomGuy"],
"license": "Apache License, Version 2.0",
"icon": "assets/stone_utils/textures/stone_shears.png",
"icon": "assets/stone_utils/textures/item/stone_shears.png",
"contact": {
"homepage": "https://modrinth.com/mod/stone-utils/",
"issues": "https://github.com/AnAwesomGuy/stone-utils/issues",
Expand All @@ -19,7 +19,7 @@
"depends": {
"fabricloader": ">=0.14.14",
"fabric": "*",
"wsmlmb": "1",
"wsmlmb": "1.x.x",
"minecraft": "${range}",
"java": ">=17"
}
Expand Down

0 comments on commit 30b1538

Please sign in to comment.