Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit a1cec72

Browse files
Forge Tags (#153)
* Add forge tag API support * Checkstyle * Fix license * Fixed accessWidener not found in fabric.mod.json issue * Use newlines at end of file * Fix more newlines Gotta take this low effort all the way to the max * Fix issues * Oh god I think I fucked up git Co-authored-by: Ramid Khan <ramidzkh@gmail.com>
1 parent 8530df3 commit a1cec72

File tree

225 files changed

+1842
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

225 files changed

+1842
-0
lines changed

patchwork-tags/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
archivesBaseName = "patchwork-tags"
2+
version = getSubprojectVersion(project, "0.1.0")
3+
4+
minecraft {
5+
accessWidener "src/main/resources/patchwork-tags.accesswidener"
6+
}

patchwork-tags/src/main/java/net/minecraftforge/common/Tags.java

Lines changed: 271 additions & 0 deletions
Large diffs are not rendered by default.
22.2 KB
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"replace": false,
3+
"values": [
4+
"#forge:chests/ender",
5+
"#forge:chests/trapped",
6+
"#forge:chests/wooden"
7+
]
8+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"replace": false,
3+
"values": [
4+
"minecraft:ender_chest"
5+
]
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"replace": false,
3+
"values": [
4+
"minecraft:trapped_chest"
5+
]
6+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"replace": false,
3+
"values": [
4+
"minecraft:chest",
5+
"minecraft:trapped_chest"
6+
]
7+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"replace": false,
3+
"values": [
4+
"minecraft:cobblestone",
5+
"minecraft:infested_cobblestone",
6+
"minecraft:mossy_cobblestone"
7+
]
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"replace": false,
3+
"values": [
4+
"minecraft:dirt",
5+
"minecraft:coarse_dirt",
6+
"minecraft:podzol"
7+
]
8+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"replace": false,
3+
"values": [
4+
"minecraft:end_stone"
5+
]
6+
}

0 commit comments

Comments
 (0)