forked from 2009Scape/Server
Updated Soul Rift in Abyss to teleport to new altar on Crandor
This commit is contained in:
parent
bbf8f3c348
commit
0f00221cd9
1 changed files with 8 additions and 0 deletions
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue