We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Version: 1.7.2 Paperweight Patcher
Just a basic paperweight fork project is missing specific classes when compiled using non-reobfuscated compiled jar servers.
I've tested this with a test plugin that checks for a certain class, in this case org.bukkit.craftbukkit.block.data.CraftBlockData.
org.bukkit.craftbukkit.block.data.CraftBlockData
try { Class.forName("org.bukkit.craftbukkit.block.data.CraftBlockData"); getLogger().info("Class found"); } catch (ClassNotFoundException e) { getLogger().severe("Class not found"); }
However, using non-reobfs, it works fine and a ClassNotFoundException doesn't occur.
Some things I've tried:
reobfPackagesToFix.addAll( "com.aikar.timings", "com.destroystokyo.paper", "com.mojang", "io.papermc.paper", "ca.spottedleaf", "net.kyori.adventure.bossbar", "net.minecraft", "org.bukkit.craftbukkit", "org.spigotmc" )
I've also asked on the paper discord in both build-tooling-help and paper-help but I was met with no replies.
build-tooling-help
paper-help
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version: 1.7.2 Paperweight Patcher
Just a basic paperweight fork project is missing specific classes when compiled using non-reobfuscated compiled jar servers.
I've tested this with a test plugin that checks for a certain class, in this case
org.bukkit.craftbukkit.block.data.CraftBlockData
.However, using non-reobfs, it works fine and a ClassNotFoundException doesn't occur.
Some things I've tried:
I've also asked on the paper discord in both
build-tooling-help
andpaper-help
but I was met with no replies.The text was updated successfully, but these errors were encountered: