Nine years! Wow, time flies by. Congratulations on lasting this long, and I hope SpigotMC continues to exist for years to come. In response to @md_5 , the only Gradle plugin I can think of that supports Bukkit and Spigot changes along with allowing development with Mojang mappings is Paper's Paperweight. I guess the only disadvantage for Spigot specifically here would be the fact that it also supports Paper's additions, which may be confusing for people wanting to just use Spigot. The other alternative I can think of is someone writing a SpecialSource Gradle plugin, though I don't know if anyone would be up for that. An example of how to use Paperweight for Gradle, for those who are interested, would be something like: Code (Text): plugins { java id("io.papermc.paperweight.userdev") version "1.1.15-SNAPSHOT" } repositories { maven("https://papermc.io/repo/repository/maven-public/") } dependencies { paperDevBundle("{MINECRAFT_VERSION}") } tasks { build { dependsOn(reobfJar) } }
Good. I hope the API can finally start to evolve properly, instead of having some hacky mess for backwards compat for 5 year old versions.
emmmm,If I want to try to open a minecraft 1.18pre5 test server, can I use the latest build to build a test version?
17 out of 44 failed to load on my server. Some of them probably because they depend on others which failed. e.g., WorldEdit failed, which caused other plugins to die. Ah, we'll get there soon enough.
1.18-pre6 is out. TECHNICAL CHANGES IN 1.18 PRE-RELEASE 6 The game now saves chunks whenever there is time spare to reduce autosave spikes
Congrats! 9 yrs already!!, Thanks to everyone who's been unselfishly committed, giving up their own free time to keeping this application updated fro the members to use. From the bottom of my heart thank you all.
Well this is bad. xInventories throws an exception, and the author, x128, hasn't been on since March 2020. Although, maybe it's a snakeyaml error? Exception - https://pastebin.com/eiSRMDdu
Spigot bug, I've just fixed. You'll need to delete/restore any .yml inventories from that plugin that were saved in 1.18-pre5
How can I access NMS in 1.18-pre5? BuildTools only built this for me: Do I really have to extract the inner .jar file and manually install it to my maven repo?