介绍
这个模组能隐藏包含用户定义字段的控制台信息。这个模组能装在客户端或服务端上,但不需要同时安装。
配置
隐藏所有包含 "Can't keep up!" 和 "Player moved too quickly!" 字段的控制台信息的一个示例:
#Any console messages containing any of these strings will be hidden.
basicFilters = ["Can't keep up!", "Player moved too quickly!"]
模组版本 2.0.0+(MC 1.19+)可以使用正则表达式隐藏过滤:
#Any console messages that match any of these regular expressions will be hidden. Uses Java style regex.
#Backslashes must be escaped, for example use \\s instead of \s to match whitespace.
regexFilters = [".*Can't keep up!.*", ".*Player moved too quickly!.*"]