Changes:
- Updated Crafter dependency version to 1.1.0.
- Internal changes on the database setup system to be compatible with the latest version of Crafter.
- Added a new feature to delete all the death points of a player in one action. This feature is available through the menu opened by the /dwp command by default and open another validation menu before deleting all the death points.
How to update?
- Some non-breaking changes has been made to the config.yml file of the plugin. If you want to update, please replace the database section by the following code:
Code (YAML):
# Database settings.
#
# If you are using the drivers mysql, mariadb or postgresql, please uncomment
# and populate the following properties:
# - database
# - host
# - port
# - username
# - password
database
:
# Database name.
# Note: The database is created automatically by the plugin.
# database: "death_waypoints"
# Database host.
# host: "localhost"
# Database port (3306 by default for MySQL / MariaDB, 5432 for PostgreSQL).
# port: 3306
# Database username.
# username: "root"
# Database password.
# password: ""
# Database driver: sqlite, mysql, mariadb, postgresql.
driver
:
"sqlite"
- An update has been made to the file death-waypoints-menu.yml to make available the delete all death points action. The pattern property has been updated:
Code (YAML):
pattern
:
-
"WWGGGGGWW"
-
"W1111111W"
-
"G1111111G"
-
"G1111111G"
-
"W1111111W"
-
"AWPGGGNWC"
The
content section has been updated with a new item:
Code (YAML):
delete-all:
item:
type
: RED_DYE
name
:
"&cDelete all the waypoints"
symbol
:
"A"
actions:
open-delete-all-menu:
type
:
"OPEN_DEATH_WAYPOINT_DELETE_ALL_MENU"