-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating to 1.15.2 and build simplification #518
base: master
Are you sure you want to change the base?
Conversation
|
//networkManagers = (List<Object>) FuzzyReflection.fromObject(serverConnection, true). | ||
// invokeMethod(null, "getNetworkManagers", List.class, serverConnection); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why was this commented out?
my recollection was that this needs to be captured so that we don't interfere with the processing of packets for normal gameplay.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch! I forgot that I had commented that out. I need to check it. Thanks!
It was raising a runtime exception due to not recognizing the getNetworkManagers method signature (maybe something to do with the 1.15.2 nms) and the method would not go until the end and jsonapi would break somewhere else. I commented it out just to see how far it went and it would run ok. Meanwhile I went full throttle on the build simplification and completely forgot about this. I'll have to recheck it.
Removed dead code Replaced debug preprocessing flag with configurable option Turned the forward ports checking verification on startup is now configurable (disabled by default).
Compilation now supports 1.15.2 (should resolve #517)
Build on top of @pawel8273 changes for 1.14.x.