Skip to content

Commit e2c9c64

Browse files
committed
fix build
1 parent 6e56864 commit e2c9c64

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/main/java/org/maxgamer/quickshop/integration/plotsquared/PlotSquaredIntegrationProxy.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ public PlotSquaredIntegrationProxy(QuickShop instance) {
3737
super(instance);
3838
if (plugin.getServer().getPluginManager().getPlugin("PlotSquared").getClass().getPackage().getName().contains("intellectualsite")) {
3939
plotSquared = new PlotSquaredIntegrationV4(plugin);
40-
} else if (Util.isClassAvailable("com.plotsquared.core.configuration.Caption")) {
41-
//Write reload logic for it
42-
plotSquared = new PlotSquaredIntegrationV5(plugin) {
43-
@Override
44-
public ReloadResult reloadModule() throws Exception {
45-
loadConfiguration();
46-
return super.reloadModule();
47-
}
48-
};
40+
} else if (false && Util.isClassAvailable("com.plotsquared.core.configuration.Caption")) {
41+
//Write reload logic for it
42+
plotSquared = new PlotSquaredIntegrationV5(plugin) {
43+
@Override
44+
public ReloadResult reloadModule() throws Exception {
45+
loadConfiguration();
46+
return super.reloadModule();
47+
}
48+
};
4949
plugin.getReloadManager().register(plotSquared);
5050
} else {
5151
plotSquared = new PlotSquaredIntegrationV6(plugin);

0 commit comments

Comments
 (0)