Skip to content

Commit 3f572c1

Browse files
committed
Updated particle settings.
1 parent ccebc99 commit 3f572c1

File tree

2 files changed

+49
-16
lines changed

2 files changed

+49
-16
lines changed

src/main/java/world/bentobox/aoneblock/Settings.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,12 @@ public class Settings implements WorldSettings {
124124
@ConfigEntry(path = "world.block-id.click-type")
125125
private String clickType = ClickType.LEFT.name();
126126

127-
@ConfigComment("Size of particles. Default is 0.7. Must be greater than 0.")
127+
@ConfigComment("Size of particles. Default is 0.5. Must be greater than 0.")
128128
@ConfigEntry(path = "world.block-id.particle-size")
129-
private Double particleSize = 0.7;
130-
@ConfigComment("Density of particles - Value from 0.1 to 1. Default is 0.5. Smaller values are more dense, higher are less.")
129+
private Double particleSize = 0.5;
130+
@ConfigComment("Density of particles - Value from 0.1 to 1. Default is 0.65. Smaller values are more dense, higher are less.")
131131
@ConfigEntry(path = "world.block-id.particle-density")
132-
private Double particleDensity = 0.5D;
132+
private Double particleDensity = 0.65D;
133133
@ConfigComment("Color of particles")
134134
@ConfigEntry(path = "world.block-id.particle-color")
135135
private Color particleColor = Color.GREEN;

src/main/resources/config.yml

Lines changed: 45 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ aoneblock:
3333
set-count-command: setCount
3434
# How long a player must wait until they can use the setCount command again. In minutes.
3535
# This is the command that is run from the phases panel.
36-
# Added since 1.13.0
36+
# Added since 1.13.0.
3737
set-count-cooldown: 5
3838
# The command label that allows to check if magic block is present and respawns it if not.
3939
# By default it is 'respawnBlock check'.
@@ -58,11 +58,29 @@ world:
5858
# Duration in seconds that phase holograms will exist after being displayed, if used.
5959
# If set to 0, then holograms will persist until cleared some other way.
6060
hologram-duration: 10
61+
# Duration in seonds that players cannot move when they start a new one block.
62+
# Used only if the Starting Safety world setting is active.
63+
starting-safety-duration: 10
64+
block-id:
65+
# Block identification appearance.
66+
# Click type that will make particles appear. Options are:
67+
# LEFT (default) or RIGHT
68+
click-type: RIGHT
69+
# Size of particles. Default is 0.7. Must be greater than 0.
70+
particle-size: 0.5
71+
# Density of particles - Value from 0.1 to 1. Default is 0.5. Smaller values are more dense, higher are less.
72+
particle-density: 0.65
73+
# Color of particles
74+
particle-color:
75+
==: Color
76+
ALPHA: 255
77+
RED: 0
78+
BLUE: 0
79+
GREEN: 128
6180
# Clear blocks when spawning mobs.
6281
# Mobs break blocks when they spawn is to prevent players from building a box around the magic block,
6382
# having the mob spawn, and then die by suffocation, i.e., it's a cheat prevention.
64-
clear-blocks: true
65-
83+
mobs-clear-blocks: true
6684
spawn-limits:
6785
# Spawn limits. These override the limits set in bukkit.yml
6886
# If set to a negative number, the server defaults will be used
@@ -174,34 +192,37 @@ world:
174192
# Mob white list - these mobs will NOT be removed when logging in or doing /island
175193
remove-mobs-whitelist:
176194
- ENDERMAN
177-
- WITHER
178195
- ZOMBIE_VILLAGER
196+
- WITHER
179197
# World flags. These are boolean settings for various flags for this world
180198
flags:
181199
CREEPER_DAMAGE: true
182200
OBSIDIAN_SCOOPING: true
183-
PISTON_PUSH: false
184201
ISLAND_RESPAWN: true
185202
CREEPER_GRIEFING: false
186203
VISITOR_KEEP_INVENTORY: false
204+
PETS_STAY_AT_HOME: true
205+
NATURAL_SPAWNING_OUTSIDE_RANGE: true
206+
LIQUIDS_FLOWING_OUT: false
207+
REMOVE_MOBS: true
208+
ENDER_CHEST: false
209+
TREES_GROWING_OUTSIDE_RANGE: false
210+
WITHER_DAMAGE: false
211+
PISTON_PUSH: false
187212
COARSE_DIRT_TILLING: true
188213
ENDERMAN_GRIEFING: true
189214
CLEAN_SUPER_FLAT: false
190215
CHEST_DAMAGE: false
191216
PREVENT_TELEPORT_WHEN_FALLING: false
192-
NATURAL_SPAWNING_OUTSIDE_RANGE: true
217+
START_SAFETY: false
193218
ENTER_EXIT_MESSAGES: true
219+
ALLOW_MOVE_BOX: true
194220
ENDERMAN_DEATH_DROP: true
195-
LIQUIDS_FLOWING_OUT: false
196221
OFFLINE_REDSTONE: true
197222
REMOVE_END_EXIT_ISLAND: true
198223
OFFLINE_GROWTH: true
199-
REMOVE_MOBS: true
200-
ENDER_CHEST: false
201224
ITEM_FRAME_DAMAGE: false
202-
TREES_GROWING_OUTSIDE_RANGE: false
203225
SPAWNER_SPAWN_EGGS: true
204-
WITHER_DAMAGE: false
205226
# These are the default protection settings for new islands.
206227
# The value is the minimum island rank required allowed to do the action
207228
# Ranks are the following:
@@ -213,6 +234,7 @@ world:
213234
# OWNER = 1000
214235
default-island-flags:
215236
HURT_ANIMALS: 500
237+
LOOM: 500
216238
DRAGON_EGG: 500
217239
REDSTONE: 500
218240
BUCKET: 500
@@ -228,6 +250,8 @@ world:
228250
END_PORTAL: 500
229251
BREEDING: 500
230252
HURT_VILLAGERS: 500
253+
BOOKSHELF: 500
254+
HARVEST: 500
231255
FROST_WALKER: 500
232256
TURTLE_EGGS: 500
233257
COLLECT_LAVA: 500
@@ -240,6 +264,7 @@ world:
240264
NAME_TAG: 500
241265
ARMOR_STAND: 500
242266
CHANGE_SETTINGS: 1000
267+
SIGN_EDITING: 500
243268
TRADING: 0
244269
EGGS: 500
245270
ITEM_DROP: 0
@@ -250,15 +275,19 @@ world:
250275
SCULK_SENSOR: 500
251276
LECTERN: 500
252277
SHULKER_BOX: 500
278+
GRINDSTONE: 500
253279
ITEM_PICKUP: 0
254280
CROP_TRAMPLE: 500
255281
DROPPER: 500
256282
BREWING: 500
283+
MOVE_BOX: 1000
257284
TNT_PRIMING: 500
285+
PARKOUR_CREATIVE: 500
258286
COLLECT_WATER: 500
259287
AXOLOTL_SCOOPING: 500
260288
BUTTON: 500
261289
COMPOSTER: 500
290+
STONECUTTING: 500
262291
FIRE_EXTINGUISH: 500
263292
COMMAND_RANKS: 500
264293
BEACON: 500
@@ -270,6 +299,7 @@ world:
270299
HIVE: 500
271300
ITEM_FRAME: 500
272301
PLACE_BLOCKS: 500
302+
CROP_PLANTING: 500
273303
CRAFTING: 0
274304
SHEARING: 500
275305
ENCHANTING: 0
@@ -281,6 +311,7 @@ world:
281311
DISPENSER: 500
282312
SCULK_SHRIEKER: 500
283313
GATE: 0
314+
SMITHING: 500
284315
EXPERIENCE_PICKUP: 500
285316
HOPPER: 500
286317
LEASH: 500
@@ -292,13 +323,16 @@ world:
292323
POTION_THROWING: 500
293324
BARREL: 500
294325
COLLECT_POWDERED_SNOW: 500
326+
CARTOGRAPHY: 500
295327
# These are the default settings for new islands
296328
default-island-settings:
297329
PVP_END: false
298330
PVP_NETHER: false
299331
LEAF_DECAY: true
332+
ENDERMAN_TELEPORT: true
300333
ANIMAL_NATURAL_SPAWN: true
301334
MONSTER_NATURAL_SPAWN: true
335+
SHULKER_TELEPORT: true
302336
FIRE_SPREAD: true
303337
FIRE_BURNING: true
304338
PVP_OVERWORLD: false
@@ -548,4 +582,3 @@ protection:
548582
do-not-edit-these-settings:
549583
# These settings should not be edited
550584
reset-epoch: 0
551-

0 commit comments

Comments
 (0)