Fixed Sanctum of the Lord of Dawn return points.

This commit is contained in:
MobiusDevelopment
2021-04-26 01:10:45 +00:00
parent 445e400e14
commit ca70acd0ba
2 changed files with 8 additions and 8 deletions

View File

@@ -119,7 +119,7 @@ public class SSQSanctumOfTheLordsOfDawn extends AbstractInstance
if ((monster != null) && (monster.getObjectId() == npc.getObjectId()))
{
teleported = true;
player.teleToLocation(SAVE_POINT[1]);
player.teleToLocation(SAVE_POINT[0], player.getInstanceId(), 0);
break;
}
}
@@ -130,7 +130,7 @@ public class SSQSanctumOfTheLordsOfDawn extends AbstractInstance
if ((monster != null) && (monster.getObjectId() == npc.getObjectId()))
{
teleported = true;
player.teleToLocation(SAVE_POINT[2]);
player.teleToLocation(SAVE_POINT[1], player.getInstanceId(), 0);
break;
}
}
@@ -142,7 +142,7 @@ public class SSQSanctumOfTheLordsOfDawn extends AbstractInstance
if ((monster != null) && (monster.getObjectId() == npc.getObjectId()))
{
teleported = true;
player.teleToLocation(SAVE_POINT[3]);
player.teleToLocation(SAVE_POINT[2], player.getInstanceId(), 0);
break;
}
}
@@ -153,7 +153,7 @@ public class SSQSanctumOfTheLordsOfDawn extends AbstractInstance
{
if ((monster != null) && (monster.getObjectId() == npc.getObjectId()))
{
player.teleToLocation(SAVE_POINT[4]);
player.teleToLocation(SAVE_POINT[3], player.getInstanceId(), 0);
break;
}
}