Register placeholders

This commit is contained in:
N0tMyFaultOG 2020-07-15 12:44:07 +02:00
parent a52249513e
commit e8c155763b
2 changed files with 3 additions and 6 deletions

View File

@ -87,7 +87,7 @@
<dependency>
<groupId>be.maximvdw</groupId>
<artifactId>MVdWPlaceholderAPI</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>2.1.1-SNAPSHOT</version>
<scope>compile</scope>
<exclusions>
<exclusion>

View File

@ -369,14 +369,11 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain<
ChatFormatter.formatters.add(new PlaceholderFormatter());
}
PlotSquared.log(Captions.PREFIX + "&6PlotSquared hooked into PlaceholderAPI");
} else {
PlotSquared
.debug(Captions.PREFIX + "&6PlaceholderAPI is not in use. Hook deactivated.");
}
if (Bukkit.getPluginManager().isPluginEnabled("MVdWPlaceholderAPI")) {
if (Bukkit.getPluginManager().getPlugin("MVdWPlaceholderAPI") != null) {
new MVdWPlaceholders(this, PlotSquared.get().getPlaceholderRegistry());
PlotSquared.log(Captions.PREFIX + "&cPlotSquared hooked into MVdWPlaceholderAPI");
PlotSquared.log(Captions.PREFIX + "&6PlotSquared hooked into MVdWPlaceholderAPI");
}
this.startMetrics();