Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rule/datapack.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ def complete_datapack_config(
fail("game_versions 不能为空列表")
# 检查每个版本是否在支持的版本列表中
for version in game_versions:
if version not in _ALL_MINECRAFT_VERSIONS:
if version not in ALL_MINECRAFT_VERSIONS:
fail("游戏版本 '%s' 不在支持的版本列表中" % version)

# 确定目标名称,默认使用当前包名称
Expand Down
Loading