Recent content by MiniDigger

  1. MiniDigger

    Question about hangar

    That seems like a weird question, why would you care? Whitespace doesn't matter, it's removed by the compiler. Replacing variables with single letters is obfuscation.
  2. MiniDigger

    Announcement Important dev PSA: Future removal of CB package relocation

    just like they do now. far down the road (talking about many years here) the apis might have diverged so far that that is not viable anymore, but I doubt spigot will last that long :)
  3. MiniDigger

    Announcement Important dev PSA: Future removal of CB package relocation

    plugins are already not compatible with spigot if they use our api, that gap will only widen in the future. and yes, there will be a time when we will no longer consider spigot to be a direct upstream and work on vanilla directly. however, that will not have much impact on plugins. if spigot...
  4. MiniDigger

    Announcement Important dev PSA: Future removal of CB package relocation

    we will not promise to never break anything, that would be stupid (and is the reason the api is so meh right now) we will promise to be careful with what we do, putting out test builds like this one, talking to the community, listening to feedback etc and there will never be a big bang kinda...
  5. MiniDigger

    Announcement Important dev PSA: Future removal of CB package relocation

    the hardness, obviously! personally I perfer the term softspoon (the result is the same, we are just not calling it hard fork anymore to avoid scaring people that think we are gonna instantly break compatibility)
  6. MiniDigger

    Solved Hello everyone, I'm trying to use Hibernate for my paper server. I'm getting the error.

    You need to use the Gradle shadow plugin to include hibernate in your plugin jar.
  7. MiniDigger

    Question How to Run Vanilla Server Cheats on a Paper Server?

    You need to make yourself an operator using the op command in the console.
  8. MiniDigger

    Best server programming language?

    It doesn't matter. Choose what you are most comfortable with. I have seen server implementations for Minecraft in virtually every language.
  9. MiniDigger

    Why did Paper change to Gradle?

    we used gradle because its easier to write our tooling for gradle, we have a custom gradle plugin called paperweight to do all the heavy lifting for us.
  10. MiniDigger

    Question Got banned from discord server??

    Please read our community guidelines to learn how to appeal a ban. https://papermc.io/community/guidelines
  11. MiniDigger

    When is paper for version 1.20 coming out?

    Roughly between yesterday and the heat death of the universe.
  12. MiniDigger

    Announcement Hangar - PaperMC's Plugin Repository

    Once again, we have another exciting announcement for you, this time about PaperMC's own site for uploading and downloading Paper, Velocity, and Waterfall plugins, called Hangar! The main reason we started working on this is to finally provide a centralized place for Paper and Velocity plugins...
  13. MiniDigger

    Question Gender change of my character?

    Offline Mode is unsupported, in Online Mode you can easily change your skin to whatever you want.
  14. MiniDigger

    Question How use paperweight patcher to patch modded spigot server?

    do it the other way around, fork paper and add your custom patches ontop of that, using our tooling: https://github.com/PaperMC/paperweight-examples
  15. MiniDigger

    Question How use paperweight patcher to patch modded spigot server?

    I am confused about what you are asking. paperweight patcher is a gradle plugin used to a) build spigot b) decompile and deobfuscate minecraft and c) apply paper patches ontop of that mess. thats part of the normal build env in your IDE. paperclip is a tool that will download a vanilla...