mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
Always set the generator
This commit is contained in:
parent
29e0479081
commit
5ae70743b1
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ public class MultiverseWorldManager extends BukkitWorldManager {
|
|||
// Then we send the console command
|
||||
final StringBuilder commandBuilder = new StringBuilder("mv create ")
|
||||
.append(worldName).append(" normal");
|
||||
if (generator != null && !generator.isEmpty()) {
|
||||
if (generator != null) {
|
||||
commandBuilder.append(" -g ").append(generator);
|
||||
}
|
||||
Bukkit.getServer().dispatchCommand(Bukkit.getServer().getConsoleSender(), commandBuilder.toString());
|
||||
|
|
Loading…
Reference in a new issue