The livereload plugin expects to read the string [CHAT] livereload - Ready from minecraft logs, however in 1.19+ the logs now say [System] [CHAT] livereload - Ready instead, which broke the plugin. Simply using re.search instead of re.match fixes the issue.
The livereload plugin expects to read the string
[CHAT] livereload - Ready
from minecraft logs, however in 1.19+ the logs now say[System] [CHAT] livereload - Ready
instead, which broke the plugin. Simply usingre.search
instead ofre.match
fixes the issue.