Adds a missing recipe that i had forgotten
This commit is contained in:
parent
33ef681cf1
commit
92a51496a6
2 changed files with 16 additions and 1 deletions
|
@ -48,7 +48,7 @@ mod_name=Thresholds
|
||||||
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||||
mod_license=GPLv3
|
mod_license=GPLv3
|
||||||
# The mod version. See https://semver.org/
|
# The mod version. See https://semver.org/
|
||||||
mod_version=1201.4.022124.2033
|
mod_version=1201.4.022124.2311
|
||||||
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
|
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
|
||||||
# This should match the base package used for the mod sources.
|
# This should match the base package used for the mod sources.
|
||||||
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||||
|
|
15
src/main/resources/data/otemod/recipes/dark_red_dye.json
Normal file
15
src/main/resources/data/otemod/recipes/dark_red_dye.json
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
{
|
||||||
|
"item": "minecraft:red_dye"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "minecraft:white_dye"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"item": "otemod:dark_red_dye",
|
||||||
|
"count": 2
|
||||||
|
}
|
||||||
|
}
|
Reference in a new issue