-
Notifications
You must be signed in to change notification settings - Fork 69
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
Compatibility with Forge+Bukkit environment #781
Conversation
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.
While I'm overall fine with bukkit compat the current provided implementation isn't very maintainable.
I also have some concerns about bukkit API license being GPL, while CC being MIT
src/main/java/io/github/opencubicchunks/cubicchunks/core/util/PlatformCompatUtils.java
Outdated
Show resolved
Hide resolved
...o/github/opencubicchunks/cubicchunks/core/asm/mixin/core/common/MixinWorldServer_Bukkit.java
Outdated
Show resolved
Hide resolved
...hub/opencubicchunks/cubicchunks/core/asm/mixin/core/common/MixinPlayerList_Bukkit_Sided.java
Outdated
Show resolved
Hide resolved
...n/java/io/github/opencubicchunks/cubicchunks/core/asm/mixin/core/common/MixinPlayerList.java
Outdated
Show resolved
Hide resolved
.../java/io/github/opencubicchunks/cubicchunks/core/asm/mixin/core/common/MixinChunk_Cubes.java
Outdated
Show resolved
Hide resolved
...java/io/github/opencubicchunks/cubicchunks/core/asm/mixin/core/common/MixinChunk_Column.java
Show resolved
Hide resolved
src/main/java/io/github/opencubicchunks/cubicchunks/core/asm/coremod/CubicChunksCoreMod.java
Outdated
Show resolved
Hide resolved
This also needs vanilla client compatibility tested. |
Tested on Vanilla Forge client and hybrid servers, works fine. |
src/main/java/io/github/opencubicchunks/cubicchunks/core/util/CompatHandler.java
Outdated
Show resolved
Hide resolved
src/main/java/io/github/opencubicchunks/cubicchunks/core/util/CompatHandler.java
Outdated
Show resolved
Hide resolved
src/main/java/io/github/opencubicchunks/cubicchunks/core/util/CompatHandler.java
Outdated
Show resolved
Hide resolved
src/main/java/io/github/opencubicchunks/cubicchunks/core/util/ReflectionUtil.java
Outdated
Show resolved
Hide resolved
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.
One last minor thing - we generally prefer to explain something like this that isn't entirely obvious in comments.
My last remaining concern is license, but other than that looks good. I'm going to accept it once this one comment is added, if licensing ever becomes an issue bukkit support can still be removed.
This pull request makes CubicChunks able to run on Forge+Bukkit server environment while keeping normal Forge compatibility.
Changes