Skip to content

Commit

Permalink
feat: 1.20.1 (#1685)
Browse files Browse the repository at this point in the history
  • Loading branch information
bconlon1 authored Sep 16, 2023
1 parent 4222d0c commit eada923
Show file tree
Hide file tree
Showing 1,216 changed files with 9,775 additions and 3,283 deletions.
4 changes: 2 additions & 2 deletions .circleci/continue_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ orbs:
parameters:
artifact-name:
type: string
default: aether-1.19.4-1.0.0-beta.6-forge.jar
default: aether-1.20.1-1.0.0-beta.6-neoforge.jar
deploy-branch:
type: string
default: 1.19.4-develop
default: 1.20.1-develop
allow-deploy-and-discord-publish:
type: boolean
default: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
remote_branch:
description: 'GitHub branch that the pull request is merging from'
required: true
default: '1.19.4-develop'
default: '1.20.1-develop'
type: string

jobs:
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ dependencies {
implementation fg.deobf("com.aetherteam.nitrogen:nitrogen_internals:${project.nitrogen_version}")
implementation fg.deobf("com.aetherteam.cumulus:cumulus_menus:${project.cumulus_version}")

implementation fg.deobf("top.theillusivec4.curios:curios-forge:${project.curios_version}")
implementation fg.deobf("top.theillusivec4.curios:curios-forge:${project.curios_version}+${project.mc_version}")

compileOnly fg.deobf("top.theillusivec4.caelus:caelus-forge:${project.caelus_version}")

Expand All @@ -106,9 +106,9 @@ dependencies {
jarJar.pin(it, "${project.cumulus_version}")
}

jarJar fg.deobf("top.theillusivec4.curios:curios-forge:${project.curios_version}") {
jarJar fg.deobf("top.theillusivec4.curios:curios-forge:${project.curios_version}+${project.mc_version}") {
jarJar.ranged(it, "[${project.curios_version},)")
jarJar.pin(it, "${project.curios_version}")
jarJar.pin(it, "${project.curios_version}+${project.mc_version}")
}

compileOnly "mezz.jei:jei-${project.mc_version}-common:${project.jei_version}"
Expand Down Expand Up @@ -219,7 +219,7 @@ modrinth {
gameVersions = ["${project.mc_version}"]
loaders = ["neoforge"]
dependencies {
embedded.version "curios", "${project.curios_version}"
embedded.version "curios", "${project.curios_version}+${project.mc_version}"
// embedded.version "cumulus", "${project.cumulus_version}"
}
}
Expand Down
327 changes: 0 additions & 327 deletions docs/CHANGELOG.md

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions docs/CREDITS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ baguchan:
- Fixes to the Dart layer renderers.
- Fixes to Whirlwinds getting stuck vertically.

Camotoy
- Help with porting to 1.20.1.

carl-vbn:
- Fixes to a rare Moa crash.

Expand Down Expand Up @@ -64,6 +67,9 @@ Kelvin285
kodadacod
- Implementation of the Skyroot Chest Boat programmer art.

MehVahdJukaar
- Updated the support for extinguishing Copper Lanterns.

saintselect
- Integration for JEI.
- Converting entity audio files from stereo to mono.
Expand All @@ -76,5 +82,9 @@ StonedCoal:
- Implementation of the Aether's main menu.
- Fixes to the Aerbunny.

Toranktto
- Fixes to missing recipe categories breaking servers on 1.19.2.

Zepalesque
- Fixes to the Slider.
- Changes to EggLayEvent to use ItemStack.
10 changes: 5 additions & 5 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ If you're interested in sponsoring the Aether project or The Aether Team, please
[![Modrinth Version](https://img.shields.io/modrinth/game-versions/YhmgMVyu?color=00AF5C&label=latest&logo=modrinth&last=true)](https://modrinth.com/mod/aether)
[![CurseForge Downloads](http://cf.way2muchnoise.eu/255308.svg)](https://www.curseforge.com/minecraft/mc-mods/aether)
[![CurseForge Version](http://cf.way2muchnoise.eu/versions/255308_latest.svg)](https://www.curseforge.com/minecraft/mc-mods/aether)
[![CircleCI](https://circleci.com/gh/The-Aether-Team/The-Aether/tree/1.19.4-develop.svg?style=shield)](https://app.circleci.com/pipelines/github/The-Aether-Team/The-Aether?branch=1.19.4-develop)
[![CircleCI](https://circleci.com/gh/The-Aether-Team/The-Aether/tree/1.20.1-develop.svg?style=shield)](https://app.circleci.com/pipelines/github/The-Aether-Team/The-Aether?branch=1.20.1-develop)
### Release builds
The Aether has relatively stable beta builds available for release for 1.19.4 on [Modrinth](https://modrinth.com/mod/aether) and [CurseForge](https://www.curseforge.com/minecraft/mc-mods/aether). A full 1.0.0 release will be coming soon.
The Aether has relatively stable beta builds available for release for 1.20.1 on [Modrinth](https://modrinth.com/mod/aether) and [CurseForge](https://www.curseforge.com/minecraft/mc-mods/aether). A full 1.0.0 release will be coming soon.

### Bleeding edge builds
If you’re feeling a bit more adventurous or wish to help test the in-development versions, we provide **bleeding edge builds** which are produced on [CircleCI](https://app.circleci.com/pipelines/github/The-Aether-Team/The-Aether). These builds are created for every new commit and contain the latest available code. We do not recommend users treat these builds as releases, as they are unfinished and may contain serious issues. If you wish to download these builds, check out [this guide](https://github.com/The-Aether-Team/The-Aether/wiki/CircleCI-Guide).
Expand Down Expand Up @@ -94,13 +94,13 @@ dependencies {
If you're running into bugs or other problems, feel free to open an issue on our [issue tracker](https://github.com/The-Aether-Team/The-Aether/issues). When doing so, make sure to use one of the provided templates and fill out all the requested information. Make sure to keep your issue's description clear and concise. Your issue's title should also be easy to digest, giving our developers and reporters a good idea of what's wrong without including too many details. Failure to follow any of the above may result in your issue being closed.

## :wrench: Contribute to the project
Looking to contribute to the project? We ask that you read over our [Contributor's Guide](https://github.com/The-Aether-Team/The-Aether/blob/1.19.4-develop/docs/CONTRIBUTING.md) for more details as well as our [Contributor License Agreement (CLA)](https://github.com/The-Aether-Team/The-Aether/blob/1.19.4-develop/docs/AGREEMENT.md) before getting started.
Looking to contribute to the project? We ask that you read over our [Contributor's Guide](https://github.com/The-Aether-Team/The-Aether/blob/1.20.1-develop/docs/CONTRIBUTING.md) for more details as well as our [Contributor License Agreement (CLA)](https://github.com/The-Aether-Team/The-Aether/blob/1.20.1-develop/docs/AGREEMENT.md) before getting started.

Not sure what to help with? Take a look at our issue tracker for some ideas! [Here's a quick link](https://github.com/The-Aether-Team/The-Aether/labels/status%2Fhelp-wanted) which shows all the currently open issues that we'd love some help on.

## :scroll: License information
[![Asset license (Unlicensed)](https://img.shields.io/badge/assets%20license-All%20Rights%20Reserved-red.svg?style=flat-square)](https://en.wikipedia.org/wiki/All_rights_reserved)
[![Code license (LGPL v3.0)](https://img.shields.io/badge/code%20license-LGPL%20v3.0-green.svg?style=flat-square)](https://github.com/The-Aether-Team/The-Aether/blob/1.19.4-develop/LICENSE.txt)
[![Code license (LGPL v3.0)](https://img.shields.io/badge/code%20license-LGPL%20v3.0-green.svg?style=flat-square)](https://github.com/The-Aether-Team/The-Aether/blob/1.20.1-develop/LICENSE.txt)

If you're wanting to create a gameplay video/review, extension or addon, parody, or any other fan work of your own for The Aether, go for it! We love seeing the content our community creates, and we hope to make it as welcoming as possible for everyone. We ask however that you please don't advertise using our brand (our specific logo assets, team name, official social media posts).

Expand Down Expand Up @@ -150,7 +150,7 @@ The Aether is available in these languages thanks to the following contributors:
If you are interested in contributing translations to The Aether, check out our [Crowdin](https://translate.aether.devaether.com/) and our [Discord](https://discord.gg/aethermod)! If you have contributed translations in the past and your name is missing from the above list, please contact us.

### :hammer: Contributions
All of our code contribution credits can be found [here](https://github.com/The-Aether-Team/The-Aether/blob/1.19.4-develop/docs/CREDITS.txt). If you contributed to the project and do not see your name, please contact us.
All of our code contribution credits can be found [here](https://github.com/The-Aether-Team/The-Aether/blob/1.20.1-develop/docs/CREDITS.txt). If you contributed to the project and do not see your name, please contact us.

### :file_folder: Dependencies
The Aether would not be possible without the features provided by the APIs and libraries it implements. Thanks goes to:
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ mappings=2023.08.20-1.20.1

# Dependencies
mixinextras_version=0.2.0-beta.9
nitrogen_version=1.20.1-0.1.0-neoforge
cumulus_version=1.20.1-0.1.0-neoforge
curios_version=5.3.1+1.20.1
nitrogen_version=1.20.1-0.1.2-neoforge
cumulus_version=1.20.1-0.1.2-neoforge
curios_version=5.3.1
caelus_version=3.1.0+1.20
jei_version=15.2.0.27
crafttweaker_version=1.20.1:14.0.14
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 1.19.4 2023-05-16T17:35:58.4796734 Tags for minecraft:damage_type mod id aether
// 1.20.1 2023-09-08T18:52:14.5081418 Tags for minecraft:damage_type mod id aether
349770fa7a71d7f6c642e562b1052607ed17b73d data/aether/tags/damage_type/is_cold.json
476b0d58a4b22583f5e50634bea23b5679f23bc6 data/minecraft/tags/damage_type/bypasses_armor.json
c1433810244ba27b66a343ff3535634d43410c04 data/minecraft/tags/damage_type/damages_helmet.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// 1.19.4 2023-03-18T18:15:21.7456046 Pack Metadata
5b87466069a84d8c94263d5e8c554c429dcdbfed pack.mcmeta
// 1.20.1 2023-09-08T18:52:14.5711421 Pack Metadata
1a67ca6fa0b2acc4b2db8da8693f2a705fa1a2de pack.mcmeta
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 1.19.4 2023-07-27T16:10:52.4867647 Tags for minecraft:entity_type mod id aether
// 1.20.1 2023-09-08T21:57:30.0174912 Tags for minecraft:entity_type mod id aether
b3a379df5d7bd0f9d26800bb985a7acba83143fe data/aether/tags/entity_types/deflectable_projectiles.json
0830aa859642688f0ce9dbf68ec5710f92d7f5d6 data/aether/tags/entity_types/fire_mob.json
215c49d40f7275befd0abd1d7d7c0e72c8b2a912 data/aether/tags/entity_types/ignore_invisibility.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 1.19.4 2023-09-04T17:26:10.6352949 Registries
// 1.20.1 2023-09-13T22:38:55.7260259 Registries
25d924fdac4392adb88fe3b6aa2c23420f6fb4f9 data/aether/damage_type/armor_piercing_attack.json
03d6a63bae7e4458c11da22471bf0f8b5051023c data/aether/damage_type/cloud_crystal.json
024fc58ce3f33e1542dfe59582a4da47cc178764 data/aether/damage_type/crush.json
Expand All @@ -10,6 +10,8 @@ cd680f6ec731971e2aefe28c7fb4c793a2923fa8 data/aether/damage_type/ice_crystal.jso
5ccd8e14aae581e4975827ff44b4e37760211a39 data/aether/damage_type/thunder_crystal.json
f5deced101d2299e370ac067f29b5b355f28e634 data/aether/dimension/the_aether.json
5655d4cd818dbc73a0baa2590d80dd274f85927d data/aether/dimension_type/the_aether.json
68202c4f994624d4f02991a97d8aafaccc3aaf7a data/aether/trim_material/gravitite.json
191264061b6e368ec29ad4c90a7cc0dd748d8e24 data/aether/trim_material/zanite.json
8a9aa7a2e0f167dc02e52cb3b5a7233015af53e3 data/aether/worldgen/biome/skyroot_forest.json
0e1e4e3b5ec8215f23178baf66e4d28e4e948ab8 data/aether/worldgen/biome/skyroot_grove.json
8f28fbf7233bd64f8615eb48f497412447091e84 data/aether/worldgen/biome/skyroot_meadow.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 1.19.4 2023-06-09T21:46:48.3356012 Block States: aether
// 1.20.1 2023-09-14T15:32:59.2589219 Block States: aether
79cb0c0ea34a92e86b03080a209cb60f268cb31e assets/aether/blockstates/aerogel.json
28f7eea22b621bda459b2328c2252cdebe0bcdb9 assets/aether/blockstates/aerogel_slab.json
0866f96b2339b894ff4c8a01aebb3d87103eb0fb assets/aether/blockstates/aether_dirt.json
Expand Down Expand Up @@ -95,6 +95,7 @@ e8539f9de046e03c644e1d5213185507155aab81 assets/aether/blockstates/skyroot_butto
3d4fc85f12a399f3d53e5f672b10d7cd41738ecf assets/aether/blockstates/skyroot_door.json
f001b8c8d046c742f5cd37f226b28c3b87e481e8 assets/aether/blockstates/skyroot_fence.json
8c307e5b3c469d3a57ce0cc64d27b8f9716159f7 assets/aether/blockstates/skyroot_fence_gate.json
f6c7650dbfdb4583feae074bdfc113697f4e3b54 assets/aether/blockstates/skyroot_hanging_sign.json
55451162e1954ca09b0c98b7b77d95de7b63d52a assets/aether/blockstates/skyroot_leaves.json
a1b4f23a041e5ef10872a6f43755bf43adbd2a2f assets/aether/blockstates/skyroot_log.json
543e38493b28057483702ecc046a5768d26d2aec assets/aether/blockstates/skyroot_planks.json
Expand All @@ -104,6 +105,7 @@ e16faf6e1c145d0e897bc87da29af25746e9dfe2 assets/aether/blockstates/skyroot_sign.
82f313bdf9780bfb0abddc886d8a1d9a3b8fd1cc assets/aether/blockstates/skyroot_slab.json
b6429904de100e77c282abda12d7c0b76478ec4a assets/aether/blockstates/skyroot_stairs.json
75272138798ef82d34cc56fa30de06b383df5658 assets/aether/blockstates/skyroot_trapdoor.json
f6c7650dbfdb4583feae074bdfc113697f4e3b54 assets/aether/blockstates/skyroot_wall_hanging_sign.json
e16faf6e1c145d0e897bc87da29af25746e9dfe2 assets/aether/blockstates/skyroot_wall_sign.json
19ef02f3c8414c03febf96eba63ea952f0795ca9 assets/aether/blockstates/skyroot_wood.json
78d3f2b583bd6d28078544b47ed7e351aa763325 assets/aether/blockstates/stripped_skyroot_log.json
Expand Down Expand Up @@ -281,6 +283,7 @@ d1d80c9cdc15dbf85a3caa64e9ec5bc9dce7c49d assets/aether/models/block/skyroot_fenc
e403b1e469d9f1d3d0d2e8cc8df156af3fe90003 assets/aether/models/block/skyroot_fence_gate_wall_open.json
4ea0326bb82b8b3cb4e834e02f777636c4e22bb9 assets/aether/models/block/skyroot_fence_post.json
de7d79f81cd7938fc64427e7cb6237af805f6999 assets/aether/models/block/skyroot_fence_side.json
7c26d16c8f0c960d395c4ee9e5919990bbc491db assets/aether/models/block/skyroot_hanging_sign.json
ece47b7e40279e0e8d0c7f738073c1ff4f79aaed assets/aether/models/block/skyroot_leaves.json
ef844674183755ce829053eecb73a33f7e85fc88 assets/aether/models/block/skyroot_log.json
359271fe5377cc3edbeefe2efe8e1a3535ebc1ce assets/aether/models/block/skyroot_log_horizontal.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// 1.19.4 2023-03-18T15:59:38.7221603 Tags for minecraft:worldgen/structure mod id aether
// 1.20.1 2023-09-08T18:52:14.5701436 Tags for minecraft:worldgen/structure mod id aether
33ff3c45ed33469da0ca8bc68728d91d60f1057c data/aether/tags/worldgen/structure/dungeons.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 1.19.4 2023-09-06T17:50:18.4392757 Tags for minecraft:block mod id aether
// 1.20.1 2023-09-14T16:50:26.0516459 Tags for minecraft:block mod id aether
fc9b66cee900f1b4f341fcec6da19eb45d575f43 data/aether/tags/blocks/aechor_plant_spawnable_on.json
7f0ca5740d7eeb3d83a96088ad6c30a672b55609 data/aether/tags/blocks/aerclouds.json
16a15f0767946dfa61ee9dfb544a3aeb3439340c data/aether/tags/blocks/aerogel.json
Expand Down Expand Up @@ -47,16 +47,18 @@ fd01915c57cee8effe17fe38cbedcefa19a98fb3 data/forge/tags/blocks/stone.json
a838c2bd53ede04f2a9ee61012c93d721871dce4 data/minecraft/tags/blocks/beds.json
e0ba7d52232d1fe3b13741279e0a983fd3a2d816 data/minecraft/tags/blocks/bee_growables.json
06c36eccc17ac624e3be0a84e7eb42a94eb9c4ec data/minecraft/tags/blocks/buttons.json
7b309889aa4e92af4df62936f4a36677e23c52d3 data/minecraft/tags/blocks/ceiling_hanging_signs.json
e7909d515ff024fd14d135aeb5e292dc775903d7 data/minecraft/tags/blocks/convertable_to_mud.json
2d0b4f3c1574160c79cacf5e6b7cb64b056908b8 data/minecraft/tags/blocks/dirt.json
a00b76037fde7105059470ed988f4651c8b25a2c data/minecraft/tags/blocks/dragon_immune.json
01f606af3f58ae6c9742c9c6e927e787256e6274 data/minecraft/tags/blocks/enchantment_power_provider.json
ee6af189f3abd5cc155e83023432af66f8abf538 data/minecraft/tags/blocks/enderman_holdable.json
0bba5a874905f77d759a35126765746aff21acf2 data/minecraft/tags/blocks/fence_gates.json
0117fd9b7b40b0e02aa3498f00e7b329ecbe6d40 data/minecraft/tags/blocks/flower_pots.json
3549a6c0791821524c9419a608b6af0de62b3530 data/minecraft/tags/blocks/impermeable.json
c158a789ed632738e5986dfbd21ff2bba9511d9b data/minecraft/tags/blocks/leaves.json
c365c56c9363907f546b5d4778b8608912fa27c9 data/minecraft/tags/blocks/logs_that_burn.json
eb7be1f416f5bb92b93b5e42d2f34e3235aedf49 data/minecraft/tags/blocks/mineable/axe.json
cbdf3c7a0ffd01a973135b741156c4fc58d72ed4 data/minecraft/tags/blocks/mineable/axe.json
ad19c87e369a437df6d6d6950246efb6ad8c99c4 data/minecraft/tags/blocks/mineable/hoe.json
7f367b779cfc58b29b82b07b1e767cb06994c22e data/minecraft/tags/blocks/mineable/pickaxe.json
cebe2140981a986c200ca3dbd83933ff732046a2 data/minecraft/tags/blocks/mineable/shovel.json
Expand All @@ -71,11 +73,15 @@ af3c295b85cf6b6b265eacda66de70b6f5ac09dc data/minecraft/tags/blocks/needs_iron_t
b830e607f8f1f40961d24f70f71b34ede14bfb3e data/minecraft/tags/blocks/slabs.json
6b8be3d5114ac4f45dbfff26c82216c0b54ed097 data/minecraft/tags/blocks/small_flowers.json
d3af8c97e70c279b7712d20a4391e1829f2a660c data/minecraft/tags/blocks/snaps_goat_horn.json
5cb681c7db44272f3d64870f460636e25b231e26 data/minecraft/tags/blocks/sniffer_diggable_block.json
193ad729a0f9ff9a88afc7626cec0c4a2d12c73c data/minecraft/tags/blocks/snow_layer_cannot_survive_on.json
457cae0b6a74abc669c26ef099149e7149ff70bb data/minecraft/tags/blocks/stairs.json
ef0249e5296febb809f365800a45d4fb24f13322 data/minecraft/tags/blocks/standing_signs.json
4d7b80f2ef2b39b61d876d350bd10e8291ddbe0e data/minecraft/tags/blocks/stone_buttons.json
ccf625a058ff363066ce123e9421fdd37414c296 data/minecraft/tags/blocks/sword_efficient.json
2d0b4f3c1574160c79cacf5e6b7cb64b056908b8 data/minecraft/tags/blocks/valid_spawn.json
8a35a44c0a25f20d1ebd014a96d33cf7359a7555 data/minecraft/tags/blocks/walls.json
55ca07d0275a47a4ae006193d82b2025a0b7b378 data/minecraft/tags/blocks/wall_hanging_signs.json
db8a532d4765955ab920abfa56fa18b7bad5900b data/minecraft/tags/blocks/wall_post_override.json
ac91036fd2f5f2e4ca494586ad538b2fb467f56a data/minecraft/tags/blocks/wall_signs.json
a8998a288a879cb5ffe96f3d45cbd69d9d50d863 data/minecraft/tags/blocks/wither_immune.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 1.19.4 2023-08-31T19:31:43.6225938 Tags for minecraft:item mod id aether
// 1.20.1 2023-09-15T11:02:30.8011398 Tags for minecraft:item mod id aether
688ae9828b941d1f6760e1e9d3126fac6b99608c data/aether/tags/items/accepted_music_discs.json
b1ab124000a7da5fa5e186c46b51223391f132d9 data/aether/tags/items/accessories.json
99e752628cab3cfc3a63a53fa4d137f0f7f03936 data/aether/tags/items/accessories_capes.json
Expand Down Expand Up @@ -105,6 +105,7 @@ a838c2bd53ede04f2a9ee61012c93d721871dce4 data/minecraft/tags/items/beds.json
041c4417a18df60eb724a8acde8db524fa8bfba5 data/minecraft/tags/items/chest_boats.json
33397c0e49ca28fad45a2f4fc1a5ceb3a01edfbd data/minecraft/tags/items/cluster_max_harvestables.json
252219f81f3abde4bdebe512332bb483fefab9da data/minecraft/tags/items/fox_food.json
7b309889aa4e92af4df62936f4a36677e23c52d3 data/minecraft/tags/items/hanging_signs.json
475cdcff955b16a53107d126242e25d0e2e6babb data/minecraft/tags/items/hoes.json
c158a789ed632738e5986dfbd21ff2bba9511d9b data/minecraft/tags/items/leaves.json
c365c56c9363907f546b5d4778b8608912fa27c9 data/minecraft/tags/items/logs_that_burn.json
Expand All @@ -117,8 +118,11 @@ ef0249e5296febb809f365800a45d4fb24f13322 data/minecraft/tags/items/signs.json
b830e607f8f1f40961d24f70f71b34ede14bfb3e data/minecraft/tags/items/slabs.json
6b8be3d5114ac4f45dbfff26c82216c0b54ed097 data/minecraft/tags/items/small_flowers.json
457cae0b6a74abc669c26ef099149e7149ff70bb data/minecraft/tags/items/stairs.json
4d7b80f2ef2b39b61d876d350bd10e8291ddbe0e data/minecraft/tags/items/stone_buttons.json
336a5cf28e3a807615f25965e0a90c7bf33dd3ac data/minecraft/tags/items/stone_crafting_materials.json
5d4a9617f9199aa91aa4d20684b2c262120a033d data/minecraft/tags/items/swords.json
dc318e3e18f8b4695a067cda64b8a6e40287a2c2 data/minecraft/tags/items/trimmable_armor.json
62f7c5ff85d3739e0a50b0a194fb5f1dc443c6a9 data/minecraft/tags/items/trim_materials.json
8a35a44c0a25f20d1ebd014a96d33cf7359a7555 data/minecraft/tags/items/walls.json
408d0a90592bca40b0849df41dceac63c321fbd0 data/minecraft/tags/items/wooden_buttons.json
f89b40a0ae36918c862701b814a6a66446f31ed4 data/minecraft/tags/items/wooden_doors.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// 1.19.4 2023-03-18T15:59:38.7241556 Tags for minecraft:fluid mod id aether
// 1.20.1 2023-09-08T18:52:14.5781449 Tags for minecraft:fluid mod id aether
c9ae54a7510073b17edf82f7591e14bdb2c51837 data/aether/tags/fluids/allowed_bucket_pickup.json
Loading

0 comments on commit eada923

Please sign in to comment.