mcbeet / beet

The Minecraft pack development kit.
https://mcbeet.dev
MIT License
140 stars 14 forks source link

fix: update beet.contrib.livereload to work in 1.19+ #447

Closed Tracktark closed 3 months ago

Tracktark commented 3 months ago

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.

vberlier commented 3 months ago

Thanks for the help!