Skip to content

Commit

Permalink
v1.2.0-beta5
Browse files Browse the repository at this point in the history
  • Loading branch information
TheClassic36 committed Nov 20, 2024
1 parent f45e645 commit 5390f99
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ body:
label: Version
description: Which version of Better Unpackables are you using? If it's not listed, please update!
options:
- v1.2.0-beta4
- v1.2.0-beta5
- v1.1.2+mod
- v1.1.2
validations:
Expand All @@ -36,7 +36,7 @@ body:
attributes:
label: Mod Loader Version
description: If running as a mod, which mod loader & Fabric API version are you using?
placeholder: "Example: Fabric Loader v0.16.9 with Fabric API v0.108.0 for Minecraft 1.21.3"
placeholder: "Example: Fabric Loader v0.16.9 with Fabric API v0.109.0 for Minecraft 1.21.3"
validations:
required: false
- type: textarea
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Recipes in this data pack/mod can be found [here on the wiki](https://github.com
| Minecraft Version | Better Unpackables Version |
| :--: | :--: |
| 1.21.4 (24w44a - 24w46a) | [v1.2.0-beta4](https://github.com/Classic36-Media/Better-Unpackables/releases/tag/v1.2.0-beta4) |
| 1.21.4 (24w46a - 1.21.4-pre1) | [v1.2.0-beta5](https://github.com/Classic36-Media/Better-Unpackables/releases/tag/v1.2.0-beta5) |
| 1.21.2 - 1.21.3 | [v1.1.2](https://github.com/Classic36-Media/Better-Unpackables/releases/tag/v1.1.2) |

Versions for older game updates and snapshots can be found [here](https://github.com/Classic36-Media/Better-Unpackables/wiki/Versions).
Expand Down
6 changes: 5 additions & 1 deletion credits.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,8 @@ ACCEPTED SUGGESTIONS:

babarsc
- Wool to String recipe
https://github.com/Classic36-Media/Better-Unpackables/issues/1
https://github.com/Classic36-Media/Better-Unpackables/issues/1

trzejos
- Quartz Block to Nether Quartz recipe
https://github.com/Classic36-Media/Better-Unpackables/issues/2
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"unpacking:quartz_block_to_quartz"
]
},
"criteria": {
"has_quartz_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "minecraft:quartz_block"
}
]
}
},
"has_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "unpacking:quartz_block_to_quartz"
}
}
},
"requirements": [
[
"has_quartz_block",
"has_recipe"
]
]
}
13 changes: 13 additions & 0 deletions data/unpacking/recipe/quartz_block_to_quartz.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"B"
],
"key": {
"B": "minecraft:quartz_block"
},
"result": {
"id": "minecraft:quartz",
"count": 4
}
}
6 changes: 3 additions & 3 deletions pack.mcmeta
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"pack":{
"pack_format": 58,
"supported_formats": {"min_inclusive": 58, "max_inclusive": 60},
"description": "§bBetter Unpackables\n§7v1.2.0-b4 §8/ §f1.21.4 Snapshots"
"pack_format": 60,
"supported_formats": {"min_inclusive": 60, "max_inclusive": 60},
"description": "§bBetter Unpackables\n§7v1.2.0-b5 §8/ §f1.21.4 Snapshots"
}
}

0 comments on commit 5390f99

Please sign in to comment.