Skip to content

Commit

Permalink
launchanddropnewplayers config option should default to whatever laun…
Browse files Browse the repository at this point in the history
…chanddropplayers is set to
  • Loading branch information
RoboMWM committed Mar 2, 2017
1 parent 60e2542 commit 6c6711b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public void onEnable()
this.config_keepSpawnRegionPostLoaded = config.getBoolean("PopulationDensity.KeepSpawnRegionPostLoaded", true);
this.config_keepAllRegionPostsLoaded = config.getBoolean("PopulationDensity.KeepAllRegionPostsLoaded", false);
this.config_launchAndDropPlayers = config.getBoolean("PopulationDensity.LaunchAndDropPlayers", true);
this.config_launchAndDropNewPlayers = config.getBoolean("PopulationDensity.LaunchAndDropNewPlayers", true);
this.config_launchAndDropNewPlayers = config.getBoolean("PopulationDensity.LaunchAndDropNewPlayers", config_launchAndDropPlayers);


String topper = config.getString("PopulationDensity.PostDesign.TopBlock", "89:0"); //default glowstone
Expand Down

0 comments on commit 6c6711b

Please sign in to comment.