[ / ] The hook with FactionsUUID was updated since it was largely changed.
[ + ] Options were added to prevent downed players from using: Lay, Sit, Crawl. This can be blocked in config.yml under the corresponding hook section.
[ + ] All placeholders were added to the messages in messages.yml
[ + ] Added support for paper 1.21.8
[ + ] Now the PlayerDropDownedEvent is called if a downed player changes picker.
[ + ] Fixed an API bug. This error occurred when using methods that returned a boolean.
1.21.8 update (I uploaded a wrong version by mistake)
[ + ] Added a placeholder for plugin messages that shows how much time is left before the player can use suicide: "<suicide_disabled_count>"
[ + ] Added compatibility with the optimized version of Duels
[ x ] Now, when a knocked-down player is a passenger of another player and disconnects, they will dismount to avoid errors.
[ + ] A new option was added to change the name of downed players in the GPS menu. This allows setting a custom name for each player through the API. Example usage:
Java:ReviveMe reviveme = JavaPlugin.getPlugin(ReviveMe.class); reviveme.getGpsManager().setNameProvider((viewer, target) -> { if (target.getName().equals("Jams")) return " Officer Jams"; return "&e" + target.getName(); });