Merge branch 'main' of github.com:PenguinOwl/QuidProQuo

This commit is contained in:
B1G-FUNGUS 2021-10-04 17:22:19 -07:00
commit 01e3e2c60f
2 changed files with 2 additions and 1 deletions

View File

@ -44,6 +44,8 @@ public final class Events implements Listener {
// skip if we didn't click an altar // skip if we didn't click an altar
if (!Altar.CheckAltar(block.getLocation())) return; if (!Altar.CheckAltar(block.getLocation())) return;
event.setCancelled(true);
// cycle targets if player is sneaking, otherwise try to enact a ritual // cycle targets if player is sneaking, otherwise try to enact a ritual
if (player.isSneaking()) { if (player.isSneaking()) {

View File

@ -5,7 +5,6 @@ import java.util.HashMap;
import java.util.Set; import java.util.Set;
import java.util.UUID; import java.util.UUID;
import org.bukkit.command.Command;
import org.bukkit.event.HandlerList; import org.bukkit.event.HandlerList;
import org.bukkit.plugin.java.JavaPlugin; import org.bukkit.plugin.java.JavaPlugin;
import org.reflections.Reflections; import org.reflections.Reflections;