blob: b68aae3163dfe8317b8f4b32fb7bc62dbeeb50fa (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<!-- Filter out Hypixel scoreboard and sound errors -->
<RegexFilter
regex="Unable to play unknown soundEvent:.* |Signature is missing from Property textures|Received packet for unknown team .*|Ignoring player info update for unknown player .*|Requested creation of existing .*"
onMatch="DENY"
onMismatch="NEUTRAL"/>
<!-- Filter out other errors -->
<RegexFilter regex="Error executing task.*" onMatch="DENY" onMismatch="NEUTRAL"/>
</Configuration>
|