Skip to content

Commit 698248b

Browse files
committed
Update 5.6.0.67
1 parent e47a001 commit 698248b

File tree

86 files changed

+1496
-152
lines changed

Some content is hidden

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

86 files changed

+1496
-152
lines changed

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,17 @@ minecraft {
6464

6565
sourceSets.main.resources { srcDir 'src/generated/resources' }
6666

67+
repositories {
68+
maven { url = 'https://www.cursemaven.com/' }
69+
}
70+
6771
dependencies {
6872
minecraft 'net.minecraftforge:forge:1.16.4-35.1.4'
6973
compile fileTree(dir:'lib', include:'*.jar')
74+
// Mod with compatibility patch
75+
implementation fg.deobf("curse.maven:create-328085:3167531")
76+
// JEI: use for quick testing on compatibility
77+
implementation fg.deobf("curse.maven:jei-238222:3189632")
7078
}
7179

7280
jar {

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
+ Diamond nether ore
55
+ Emerald nether ore
66
+ Bad registry name apply on some block
7+
+ Missing recipe
78
+ Add
89
+ Dust
910
+ Coal
@@ -24,6 +25,8 @@
2425
+ Lapis
2526
+ Emerald
2627
+ Custom creative tab
28+
+ Compatibility
29+
+ Create (partial)
2730

2831
### 4.5.0.63-experimental
2932
+ Add support for DiaboloLib 1.0.4

src/generated/resources/.cache/cache

Lines changed: 58 additions & 8 deletions
Large diffs are not rendered by default.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"type": "create:crushing",
3+
"ingredients": [
4+
{
5+
"tag": "forge:ingots/aluminium"
6+
}
7+
],
8+
"results": [
9+
{
10+
"item": "janoeo:aluminium_dust"
11+
}
12+
],
13+
"processingTime": 300,
14+
"conditions": [
15+
{
16+
"value": {
17+
"tag": "forge:ingots/aluminium",
18+
"type": "forge:tag_empty"
19+
},
20+
"type": "forge:not"
21+
}
22+
]
23+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"type": "create:crushing",
3+
"ingredients": [
4+
{
5+
"item": "minecraft:coal"
6+
}
7+
],
8+
"results": [
9+
{
10+
"item": "janoeo:coal_dust"
11+
}
12+
],
13+
"processingTime": 300
14+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"type": "create:crushing",
3+
"ingredients": [
4+
{
5+
"item": "janoeo:coal_basalt_ore"
6+
}
7+
],
8+
"results": [
9+
{
10+
"item": "minecraft:coal",
11+
"count": 2
12+
},
13+
{
14+
"item": "minecraft:coal",
15+
"count": 2,
16+
"chance": 0.5
17+
},
18+
{
19+
"item": "minecraft:basalt",
20+
"chance": 0.125
21+
}
22+
],
23+
"processingTime": 300
24+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"type": "create:crushing",
3+
"ingredients": [
4+
{
5+
"item": "janoeo:coal_end_ore"
6+
}
7+
],
8+
"results": [
9+
{
10+
"item": "minecraft:coal",
11+
"count": 2
12+
},
13+
{
14+
"item": "minecraft:coal",
15+
"count": 2,
16+
"chance": 0.5
17+
},
18+
{
19+
"item": "minecraft:end_stone",
20+
"chance": 0.125
21+
}
22+
],
23+
"processingTime": 300
24+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"type": "create:crushing",
3+
"ingredients": [
4+
{
5+
"item": "janoeo:coal_nether_ore"
6+
}
7+
],
8+
"results": [
9+
{
10+
"item": "minecraft:coal",
11+
"count": 2
12+
},
13+
{
14+
"item": "minecraft:coal",
15+
"count": 2,
16+
"chance": 0.5
17+
},
18+
{
19+
"item": "minecraft:netherrack",
20+
"chance": 0.125
21+
}
22+
],
23+
"processingTime": 300
24+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"type": "create:crushing",
3+
"ingredients": [
4+
{
5+
"tag": "forge:ingots/copper"
6+
}
7+
],
8+
"results": [
9+
{
10+
"item": "janoeo:copper_dust"
11+
}
12+
],
13+
"processingTime": 350,
14+
"conditions": [
15+
{
16+
"value": {
17+
"tag": "forge:ingots/copper",
18+
"type": "forge:tag_empty"
19+
},
20+
"type": "forge:not"
21+
}
22+
]
23+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"type": "create:crushing",
3+
"ingredients": [
4+
{
5+
"item": "minecraft:diamond"
6+
}
7+
],
8+
"results": [
9+
{
10+
"item": "janoeo:diamond_dust"
11+
}
12+
],
13+
"processingTime": 500
14+
}

0 commit comments

Comments
 (0)