Tyler Scott
Tyler Scott
I can confirm that I am getting the same errors.
I am considering updating it to the latest version of forge soon. All depends on how much free time I can get. (Full time student with 2 part time jobs)
I think they want a version with fewer dependencies. Which is the whole reason that I don't use the official version. I don't care for adding needless dependencies.
Seems reasonable to me. Only reason I wanted it, was because I already use Forge and didn't want to use liteloader. My current plans for minecraft coding are low priority...
Sounds good to me. I have no real need to continue/start development of this.
We just need to make it so that any instance where a parameter is a UUID, we add the ? to it so that null/undefined is legal. Ex: ``` register(id?:...
@robotdan You are correct. Null is always implicitly allowed. The `?` makes it optional and thus it cannot come first in the argument list. I also just checked and we...
Hi, I believe this is fixed in `1.16.1`. Feel free to try it out.
This is something I was intending to include from the beginning but is blocked by several missing features we are taking advantage of in Newtonsofts version. 1. [Custom enum names](https://github.com/dotnet/runtime/issues/31081)...
The API error paths *usually* respond with status codes and exception messages. The only two statuses that don't have interesting messages are the 401 and 404. (and 500 but those...