Skip to content

Commit

Permalink
修复未更新的注释
Browse files Browse the repository at this point in the history
  • Loading branch information
ApliNi committed Feb 2, 2024
1 parent aff36ce commit 7d972ec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ list: # 替换列表
# [示例] 所有可用配置
# [可选] 仅对拥有该权限的玩家处理这条消息, 默认所有玩家
- permission: 'minecraft.command'
# [必选] 检查消息长度是否在此区间内 (大于等于50且小于等于64)
# [必选] 检查消息长度是否在此区间内
# [50, 64] = 大于等于50且小于等于64
# [64] = 等于 64
inspectLength: [50, 64]
# [必选] 使用正则表达式匹配
get: '^\{"text":"","extra":\["Missing required argument (\d+)"\]\}$'
Expand Down
4 changes: 3 additions & 1 deletion README_MCBBS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ list: # 替换列表
# [示例] 所有可用配置
# [可选] 仅对拥有该权限的玩家处理这条消息, 默认所有玩家
- permission: 'minecraft.command'
# [必选] 检查消息长度是否在此区间内 (大于等于50且小于等于64)
# [必选] 检查消息长度是否在此区间内
# [50, 64] = 大于等于50且小于等于64
# [64] = 等于 64
inspectLength: [50, 64]
# [必选] 使用正则表达式匹配
get: '^\{"text":"","extra":\["Missing required argument (\d+)"\]\}$'
Expand Down
4 changes: 3 additions & 1 deletion src/main/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ list: # 替换列表
# [示例] 所有可用配置
# [可选] 仅对拥有该权限的玩家处理这条消息, 默认所有玩家
- permission: 'minecraft.command'
# [必选] 检查消息长度是否在此区间内 (大于等于50且小于等于64)
# [必选] 检查消息长度是否在此区间内
# [50, 64] = 大于等于50且小于等于64
# [64] = 等于 64
inspectLength: [50, 64]
# [必选] 使用正则表达式匹配
get: '^\{"text":"","extra":\["Missing required argument (\d+)"\]\}$'
Expand Down

0 comments on commit 7d972ec

Please sign in to comment.