Skip to content

Commit a7d4667

Browse files
committed
1.1.13 - Crafting
1 parent 1903f1d commit a7d4667

File tree

10 files changed

+84
-4
lines changed

10 files changed

+84
-4
lines changed

changelog.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@
1919
1.20.1-1.1.12: |
2020
- Misc refactor
2121
- Mainly just to bump version to republish
22+
1.20.1-1.1.13: |
23+
- Added crafting using existing schematics instead of paper
2224
...

common/src/main/java/com/cak/pattern_schematics/mixin/CreateCreativeModeTabMixin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class CreateCreativeModeTabMixin {
1414
@Redirect(method = "collectItems", at = @At(value = "INVOKE", target = "Ljava/util/List;add(Ljava/lang/Object;)Z"))
1515
private boolean addAdditionalItemInject(List<Item> instance, Object element) {
1616
Item itemToAdd = (Item) element;
17-
//Ensure execution order, add the instance then add other
17+
//Ensure execution order, add the instance then add otherg
1818
boolean result = instance.add(itemToAdd);
1919

2020
if (
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"values": [
3+
"create:schematic",
4+
"create:empty_schematic"
5+
]
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"values": [
3+
"create_pattern_schematics:pattern_schematic",
4+
"create_pattern_schematics:empty_pattern_schematic"
5+
]
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"type": "minecraft:crafting_shapeless",
3+
"category": "misc",
4+
"ingredients": [
5+
{
6+
"item": "create:iron_sheet"
7+
},
8+
{
9+
"tag": "create_pattern_schematics:pattern_schematic_paper_substitutes"
10+
},
11+
{
12+
"tag": "c:pink_dyes"
13+
}
14+
],
15+
"result": {
16+
"item": "create_pattern_schematics:empty_pattern_schematic"
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"type": "minecraft:crafting_shapeless",
3+
"category": "misc",
4+
"ingredients": [
5+
{
6+
"tag": "create_pattern_schematics:schematic_paper_substitutes"
7+
},
8+
{
9+
"tag": "c:light_blue_dyes"
10+
}
11+
],
12+
"result": {
13+
"item": "create:empty_schematic"
14+
}
15+
}

forge-updates.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"homepage": "https://modrinth.com/mod/create-pattern-schematics",
33
"promos": {
4-
"1.20.1-recommended": "1.1.11",
5-
"1.20.1-latest": "1.1.11"
4+
"1.20.1-recommended": "1.1.13",
5+
"1.20.1-latest": "1.1.13"
66
}
77
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"type": "minecraft:crafting_shapeless",
3+
"category": "misc",
4+
"ingredients": [
5+
{
6+
"item": "create:iron_sheet"
7+
},
8+
{
9+
"tag": "create_pattern_schematics:pattern_schematic_paper_substitutes"
10+
},
11+
{
12+
"tag": "forge:dyes/pink"
13+
}
14+
],
15+
"result": {
16+
"item": "create_pattern_schematics:empty_pattern_schematic"
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"type": "minecraft:crafting_shapeless",
3+
"category": "misc",
4+
"ingredients": [
5+
{
6+
"tag": "create_pattern_schematics:schematic_paper_substitutes"
7+
},
8+
{
9+
"tag": "forge:dyes/light_blue"
10+
}
11+
],
12+
"result": {
13+
"item": "create:empty_schematic"
14+
}
15+
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ org.gradle.jvmargs = -Xmx2G
22

33
# Mod Info
44
archives_base_name = pattern_schematics
5-
mod_version = 1.1.12
5+
mod_version = 1.1.13
66
maven_group = com.cak.pattern_schematics
77

88
minecraft_version = 1.20.1

0 commit comments

Comments
 (0)