Adds minimal tutorial for parkour creation

This commit is contained in:
Kristian Knarvik 2023-04-17 13:43:26 +02:00
parent 0344060214
commit ac70b4bb0d
2 changed files with 9 additions and 3 deletions

View File

@ -1,12 +1,18 @@
# MiniGames
This plugin adds several mini-games.
To create a dropper arena, simply use `/droppercreate <name>`, where \<name> is simply the name used to differentiate
and
recognize the arena. Your location will be used as the spawn location for anyone joining the dropper arena. To start
and recognize the arena. Your location will be used as the spawn location for anyone joining the dropper arena. To start
playing, simply use `/dropperjoin <name>`, where \<name> is the same as you specified upon creation.
To modify the arena, use `/dropperedit <name> <property> <value>`.
To create a parkour arena, simply use `/parkourcreate <name>`, where \<name> is simply the name used to differentiate
and recognize the arena. Your location will be used as the spawn location for anyone joining the dropper arena. To start
playing, simply use `/parkourjoin <name>`, where \<name> is the same as you specified upon creation.
To modify the arena, use `/parkouredit <name> <property> <value>`. Use `/parkouredit checkpointAdd here` to add a
checkpoint at your current location.
## Permissions
The only permission normal players will need is `minigames.join` which is set to true by default.

View File

@ -396,7 +396,7 @@ public class ParkourArena implements Arena {
if (checkpoints.isEmpty()) {
return false;
}
this.checkpoints.clear();
this.parkourArenaHandler.saveArenas();
return true;