mirror of
https://github.com/Flowsqy/ShopChest.git
synced 2024-11-14 23:15:10 +01:00
Update listeners for v5
This commit is contained in:
parent
00a04cb3a9
commit
7e5ffdbb41
@ -1,9 +1,10 @@
|
||||
package de.epiceric.shopchest.external.listeners;
|
||||
|
||||
import com.github.intellectualsites.plotsquared.bukkit.events.PlotClearEvent;
|
||||
import com.github.intellectualsites.plotsquared.bukkit.events.PlotDeleteEvent;
|
||||
import com.github.intellectualsites.plotsquared.plot.object.Location;
|
||||
import com.google.common.eventbus.Subscribe;
|
||||
import com.plotsquared.core.events.PlotClearEvent;
|
||||
import com.plotsquared.core.events.PlotDeleteEvent;
|
||||
import com.plotsquared.core.location.Location;
|
||||
import com.plotsquared.core.plot.Plot;
|
||||
import de.epiceric.shopchest.ShopChest;
|
||||
import de.epiceric.shopchest.config.Config;
|
||||
import de.epiceric.shopchest.event.ShopCreateEvent;
|
||||
@ -104,8 +105,8 @@ public class PlotSquaredListener implements Listener {
|
||||
|
||||
try {
|
||||
Class.forName("com.plotsquared.core.PlotSquared");
|
||||
com.plotsquared.core.location.Location plotLocation = new com.plotsquared.core.location.Location(loc.getWorld().getName(), loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
|
||||
com.plotsquared.core.plot.Plot plot = plotLocation.getOwnedPlot();
|
||||
Location plotLocation = new Location(loc.getWorld().getName(), loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
|
||||
Plot plot = plotLocation.getOwnedPlot();
|
||||
isAllowed = PlotSquaredShopFlag.isFlagAllowedOnPlot(plot, PlotSquaredShopFlag.CREATE_SHOP, player);
|
||||
} catch (ClassNotFoundException ex) {
|
||||
com.github.intellectualsites.plotsquared.plot.object.Location plotLocation = new com.github.intellectualsites.plotsquared.plot.object.Location(
|
||||
|
Loading…
Reference in New Issue
Block a user