From 1dd83875ef6a2f9f1bedaa90e6725cc95a92d957 Mon Sep 17 00:00:00 2001 From: drcrazy Date: Mon, 12 Aug 2019 01:08:11 +0300 Subject: [PATCH] Add item tags. Closes #1767 --- src/main/resources/data/minecraft/tags/items/leaves.json | 6 ++++++ src/main/resources/data/minecraft/tags/items/logs.json | 6 ++++++ src/main/resources/data/minecraft/tags/items/planks.json | 6 ++++++ src/main/resources/data/minecraft/tags/items/saplings.json | 6 ++++++ src/main/resources/data/minecraft/tags/items/stairs.json | 6 ++++++ 5 files changed, 30 insertions(+) create mode 100644 src/main/resources/data/minecraft/tags/items/leaves.json create mode 100644 src/main/resources/data/minecraft/tags/items/logs.json create mode 100644 src/main/resources/data/minecraft/tags/items/planks.json create mode 100644 src/main/resources/data/minecraft/tags/items/saplings.json create mode 100644 src/main/resources/data/minecraft/tags/items/stairs.json diff --git a/src/main/resources/data/minecraft/tags/items/leaves.json b/src/main/resources/data/minecraft/tags/items/leaves.json new file mode 100644 index 000000000..1a7eaf381 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/leaves.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "techreborn:rubber_leaves" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/logs.json b/src/main/resources/data/minecraft/tags/items/logs.json new file mode 100644 index 000000000..bdc045a66 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/logs.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "techreborn:rubber_log" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/planks.json b/src/main/resources/data/minecraft/tags/items/planks.json new file mode 100644 index 000000000..df8cc79dd --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/planks.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "techreborn:rubber_planks" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/saplings.json b/src/main/resources/data/minecraft/tags/items/saplings.json new file mode 100644 index 000000000..db314f7d1 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/saplings.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "techreborn:rubber_sapling" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/stairs.json b/src/main/resources/data/minecraft/tags/items/stairs.json new file mode 100644 index 000000000..9e5f0c9f6 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/stairs.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "techreborn:rubber_plank_stair" + ] +} \ No newline at end of file