Update to FAWE 1.17

This commit is contained in:
dordsor21
2021-06-26 16:19:07 +01:00
parent 8f48b83c79
commit 67bbd64fa1
4 changed files with 5 additions and 5 deletions

View File

@ -263,7 +263,7 @@ public final class BukkitPlatform extends JavaPlugin implements Listener, PlotPl
Plugin fawe = getServer().getPluginManager().getPlugin("FastAsyncWorldEdit");
if (fawe != null) {
try {
Class.forName("com.boydti.fawe.bukkit.regions.plotsquared.FaweQueueCoordinator");
Class.forName("com.fastasyncworldedit.bukkit.regions.plotsquared.FaweQueueCoordinator");
faweHook = true;
} catch (Exception ignored) {
LOGGER.error("Incompatible version of FAWE to enable hook, please upgrade: https://ci.athion" +

View File

@ -25,7 +25,7 @@
*/
package com.plotsquared.bukkit.util.fawe;
import com.boydti.fawe.bukkit.regions.plotsquared.FaweDelegateRegionManager;
import com.fastasyncworldedit.bukkit.regions.plotsquared.FaweDelegateRegionManager;
import com.google.inject.Inject;
import com.plotsquared.bukkit.util.BukkitRegionManager;
import com.plotsquared.core.configuration.Settings;

View File

@ -25,7 +25,7 @@
*/
package com.plotsquared.bukkit.util.fawe;
import com.boydti.fawe.bukkit.regions.plotsquared.FaweDelegateSchematicHandler;
import com.fastasyncworldedit.bukkit.regions.plotsquared.FaweDelegateSchematicHandler;
import com.google.inject.Inject;
import com.plotsquared.core.inject.factory.ProgressSubscriberFactory;
import com.plotsquared.core.player.PlotPlayer;