Tnze / go-mc

Collection of Go libraries for Minecraft
https://go-mc.github.io/tutorial/
MIT License
848 stars 114 forks source link

bot/server对于1.18以下版本支持 #273

Closed OOPSgary closed 7 months ago

OOPSgary commented 7 months ago

最近正在研究go-mc写的bot库和server库,发现旧版本的LoginStart包并不包含UUID字段 但是现在的bot/server库中使用的登录和验证均为读取/写入UUID 请问是否能增加一个判断,使基础功能能向下兼容

Tnze commented 7 months ago

bot包一直是不兼容旧版本的,协议每个版本都有小修小改,没办法维护。你可以试试checkout到旧版本的go-mc。

OOPSgary commented 7 months ago

十分感谢