Skip to content

Commit

Permalink
修复了无法使用镐采集带釉陶瓦台阶的问题(同步更新数据生成)
Browse files Browse the repository at this point in the history
  • Loading branch information
SolidBlock-cn committed Oct 19, 2024
1 parent 87aa937 commit 0601f07
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions UpdateLog-en.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Update log

### 3.0.3

- Fixed the issue that glazed terracotta slabs cannot be harvested with pickaxes.

### 3.0.2

- Fixed the issue that slab loot tables are incorrect. (#65)
Expand Down
4 changes: 4 additions & 0 deletions UpdateLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 更新日志

### 3.0.3

- 修复了无法使用镐采集带釉陶瓦台阶的问题。

### 3.0.2

- 修复台阶战利品表错误。(#65
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ loader_version=0.16.5
yarn_mappings=1.20.4+build.3

# Mod Properties
mod_version=3.0.2
mod_version=3.0.3
maven_group=pers.solid
archives_base_name=extshape
archives_base_name_blockus=extshape_blockus
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,7 @@
"#extshape:terracotta_fence_gates",
"#extshape:terracotta_walls",
"#extshape:terracotta_buttons",
"#extshape:terracotta_pressure_plates"
"#extshape:terracotta_pressure_plates",
"#extshape:glazed_terracotta_slabs"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ protected void configure(RegistryWrapper.WrapperLookup wrapperLookup) {
for (TagKey<Block> tag : Iterables.concat(ExtShapeTags.SHAPE_TO_CONCRETE_TAG.values(), ExtShapeTags.SHAPE_TO_TERRACOTTA_TAG.values())) {
getOrCreateTagBuilder(BlockTags.PICKAXE_MINEABLE).addTag(tag);
}
getOrCreateTagBuilder(BlockTags.PICKAXE_MINEABLE).addTag(ExtShapeTags.GLAZED_TERRACOTTA_SLABS);

getOrCreateTagBuilder(BlockTags.AXE_MINEABLE)
.addTag(ExtShapeTags.WOODEN_BLOCKS);
Expand Down

0 comments on commit 0601f07

Please sign in to comment.