mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-10 22:35:29 +00:00
various fixes
This commit is contained in:
parent
766dc0f703
commit
a30e8eec9a
7 changed files with 30 additions and 11 deletions
|
@ -1179,10 +1179,13 @@ public class PlotMain extends JavaPlugin {
|
|||
worlds = new HashSet<String>();
|
||||
}
|
||||
if ((generator != null) && (generator instanceof PlotGenerator)) {
|
||||
sendConsoleSenderMessage(C.PREFIX.s() + "&aDetected world load for '" + world + "'.");
|
||||
sendConsoleSenderMessage(C.PREFIX.s() + "&aDetected world load for '" + world + "'");
|
||||
final PlotGenerator plotgen = (PlotGenerator) generator;
|
||||
sendConsoleSenderMessage(C.PREFIX.s() + "&3 - generator: &7" + generator.getClass().getName());
|
||||
final PlotWorld plotworld = plotgen.getNewPlotWorld(world);
|
||||
sendConsoleSenderMessage(C.PREFIX.s() + "&3 - plotworld: &7" + plotworld.getClass().getName());
|
||||
final PlotManager manager = plotgen.getPlotManager();
|
||||
sendConsoleSenderMessage(C.PREFIX.s() + "&3 - manager: &7" + manager.getClass().getName());
|
||||
|
||||
if (!config.contains("worlds." + world)) {
|
||||
config.createSection("worlds." + world);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue