willkroboth

Results 105 comments of willkroboth

The crash looks similar to #2560, where command blocks couldn't load or unload worlds because they were modifying the world map while the server was iterating through that map to...

This is possible already, not using Multiverse-Portals, but [Multiverse-NetherPortals](https://dev.bukkit.org/projects/multiverse-netherportals/). The [core page](https://dev.bukkit.org/projects/multiverse-core) lists this after Multiverse-Portal features: [Multiverse-NetherPortals](https://dev.bukkit.org/projects/multiverse-netherportals/) features: - Have nether and end worlds per for any of your...

This PR no longer depends on PaperMC/Paper#8316 being accepted. Instead, the `isIteratingOverLevels` boolean is directly accessed via reflection like this: ```java private boolean safeToAddOrRemoveWorld(){ Server server = Bukkit.getServer(); Logging.finest("Using reflection...

Paper has aligned with Spigot and currently allows worlds to be loaded/unloaded while being ticked. While this technically makes this PR unnecessary, [they have asked](https://github.com/PaperMC/Paper/pull/8316#issuecomment-1256864284) to consider deferring world load/unload...

I agree with Mrcomputer1 that the Paper patch in question is a compatibility issue with Spigot. It seems completely reasonable to me that plugins written for Spigot might use `Player#chat`...

> just because behavior is different, doesn't mean its a compatibility. Ok, I wasn't sure what exactly the behavior was at the time. It seemed most likely to me that...

Multiple paths for command suggestions are now possible with this syntax (taken from ArgumentTests): ```java new CommandArgument("command") .branchSuggestions( SuggestionsBranch.suggest( ArgumentSuggestions.strings("give"), ArgumentSuggestions.strings(info -> Bukkit.getOnlinePlayers().stream().map(Player::getName).toArray(String[]::new)) ).branch( SuggestionsBranch.suggest( ArgumentSuggestions.strings("diamond", "minecraft:diamond"), ArgumentSuggestions.empty() ), SuggestionsBranch.suggest(...

I'm pretty sure Multiverse does support Java 17? It works for me at least. As far as I know, Java is backwards compatible, so programs compiled in Java 16 (and...

Here you go: https://j.mp/3pF1hMY Note: In my first post I called the worlds minigame, but they are actually called manHunt

It seems this issue has gone stale. If it helps, I recently tried doing this again to see if any updates had fixed the issue. Unfortunately, it still crashed, but...