@@ -223,16 +223,16 @@ private <N extends Node> N node(N node) {
223
223
.build ());
224
224
225
225
final ConfigNode <Boolean > firstSpawnOverride = node (ConfigNode .builder ("spawn.first-spawn-override" , Boolean .class )
226
- .comment ("Sets whether Multiverse will override the first spawn location of a world. " )
227
- .comment ("If enabled, Multiverse will set the first spawn location of a world to the spawn location of the world ." )
226
+ .comment ("Sets whether Multiverse will override the location where the player spawns when they join the server " )
227
+ .comment ("for the first time. For fixed spawn location on every login, see the `join-destination` option below ." )
228
228
.comment ("If disabled, it will default to server.properties settings." )
229
229
.defaultValue (false )
230
230
.name ("first-spawn-override" )
231
231
.build ());
232
232
233
233
final ConfigNode <String > firstSpawnLocation = node (ConfigNode .builder ("spawn.first-spawn-location" , String .class )
234
234
.comment ("" )
235
- .comment ("Sets the world that Multiverse will use as the location for players that first join the server." )
235
+ .comment ("Sets the world that Multiverse will use as the location for players that join the server for the first time ." )
236
236
.comment ("This only applies if first-spawn-override is set to true." )
237
237
.defaultValue ("" )
238
238
.name ("first-spawn-location" )
@@ -241,14 +241,15 @@ private <N extends Node> N node(N node) {
241
241
242
242
final ConfigNode <Boolean > enableJoinDestination = node (ConfigNode .builder ("spawn.enable-join-destination" , Boolean .class )
243
243
.comment ("" )
244
- .comment ("Enables join-destination below." )
244
+ .comment ("Enables setting of a fixed location for players to spawn in when they join the server every time." )
245
+ .comment ("See `join-destination` option below as well." )
245
246
.defaultValue (false )
246
247
.name ("enable-join-destination" )
247
248
.build ());
248
249
249
250
final ConfigNode <String > joinDestination = node (ConfigNode .builder ("spawn.join-destination" , String .class )
250
251
.comment ("" )
251
- .comment ("Sets the destination that Multiverse will use to spawn players on every login" )
252
+ .comment ("Sets the destination that Multiverse will use to spawn players on every login. " )
252
253
.comment ("Set the above enable-join-destination to false to disable" )
253
254
.defaultValue ("" )
254
255
.name ("join-destination" )
0 commit comments