Derek
Derek
Any update on the possibility of action bar greetings/farewells? For those who stumble here via google search etc, you can accomplish this for the time being [withworldguard extra flags](https://www.spigotmc.org/resources/worldguard-extra-flags.4823/), running...
This issue does not affect me since I disable all combatlogX inventory closing features. I just found the bug and was asked to submit the bug here.
Interesting, even still, I think there should be no "Your inventory was closed" when the player isn't currently in an inventory as they understand it.
I hope this is implemented. I read through this thread and it seems many commenters don't understand the server admin perspective. We'd like to be able to say "Litematica is...
Thank you for the quick response. > * The 1.12.2 malilib code already has support for a server overriding config options to given values. So using that the server can...
PlaceholderAPI support in Kits name: and lore: etc would be great!
Thanks for the quick response providing immediate solutions. I personally have chosen to use CANCEL_EVENT mode as a solution however I look forward to a fully functional KNOCKBACK_PLAYER mode.
Hey SirBlobman, Players are still able to enter a region with the the flags set to block their entry using KNOCKBACK_PLAYER mode. This can be done a few ways. 1....
Here's how I fixed it in my personal branch of clx: ``` case KNOCKBACK_PLAYER: e.setCancelled(true); if (player.isInsideVehicle()) { if (!player.leaveVehicle()) { e.setCancelled(true); break; } } if (isGliding(player)) { player.setGliding(false); Vector...
Also I'm curious why the `knockbackPlayer` is executed via scheduler rather than just running `knockbackPlayer(player, fromLocation, toLocation);`