Skip to content

Commit

Permalink
Fixed some config settings. Added a starter blueprint.
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Aug 24, 2021
1 parent 81d3fdf commit 382c138
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/main/java/world/bentobox/parkour/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public class Settings implements WorldSettings {
@ConfigComment("Area height - Lowest is 5.")
@ConfigComment("It is the y coordinate of the bedrock block in the blueprint.")
@ConfigEntry(path = "world.area-height")
private int islandHeight = 5;
private int islandHeight = 100;

@ConfigComment("Use your own world generator for this world.")
@ConfigComment("In this case, the plugin will not generate anything.")
Expand Down
13 changes: 7 additions & 6 deletions src/main/resources/blueprints/default.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"uniqueId": "default",
"icon": "PAPER",
"displayName": "Default bundle",
"icon": "ORANGE_CONCRETE",
"displayName": "Starter Parkour",
"description": [
"§bDefault bundle of blueprints"
"A starter Parkour",
"with instructions."
],
"requirePermission": false,
"blueprints": {
"NORMAL": "bedrock",
"NETHER": "bedrock",
"THE_END": "bedrock"
"NORMAL": "starter",
"NETHER": "starter",
"THE_END": "starter"
},
"slot": 0
}
Binary file added src/main/resources/blueprints/starter.blu
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ world:
# Default protection range radius in blocks. Cannot be larger than distance.
# Admins can change protection sizes for players individually using /bsbadmin range set <player> <new range>
# or set this permission: parkour.island.range.<number>
protection-range: 1
protection-range: 100
# Start islands at these coordinates. This is where new islands will start in the
# world. These must be a factor of your island distance, but the plugin will auto
# calculate the closest location on the grid. Islands develop around this location
Expand Down

0 comments on commit 382c138

Please sign in to comment.