Closed LOOHP closed 3 years ago
Thanks! What methods or such did you call that looked for NBTTagEnd
? I don't think it was used in previous versions but I didn't extensively test every case.
I ran into the error by using contains(Object, String...)
It didn't cause any problems in the past is probably due to the getNMSClass
being able to find the class on every execution, tho since 1.17 repackaged nms classes it is unable to.
Yes, that definitely does seem to be an oversight on my part. 😛
Awesome Utility nevertheless! :P
On 1.17, since NBTTagEnd is not put into classCache, NBTEditor tries to find it with the path
net.minecraft.server.v1_17_R1.NBTTagEnd
which is incorrect. This PR does just that.