Updated Soul Rift in Abyss to teleport to new altar on Crandor

This commit is contained in:
randy 2024-11-03 18:32:19 -07:00
parent bbf8f3c348
commit 0f00221cd9

View file

@ -82,6 +82,14 @@ public enum Altar {
if (this == BLOOD) {
if (!hasRequirement(player, "Legacy of Seergaze"))
return;
}
if (this == SOUL) {
if (player.getQuestRepository().isComplete("Dragon Slayer")) {
player.getProperties().setTeleportLocation(Location.create(2836, 3285, 0));
} else {
player.sendMessage("You need to have completed the Dragon Slayer quest in order to do that.");
return;
}
}
if (this == LAW) {
if (!ItemDefinition.canEnterEntrana(player)) {