Merge pull request #4615 from deathbeam/fix-zulrah-worldloc

Fix LootManager zulrah location
This commit is contained in:
Tomas Slusny
2018-08-01 22:45:01 +02:00
committed by GitHub

View File

@@ -263,7 +263,7 @@ public class LootManager
int packed = entry.getKey(); int packed = entry.getKey();
int unpackedX = packed >> 8; int unpackedX = packed >> 8;
int unpackedY = packed & 0xFF; int unpackedY = packed & 0xFF;
worldLocation = new WorldPoint(unpackedX, unpackedY, worldLocation.getPlane()); worldLocation = WorldPoint.fromScene(client, unpackedX, unpackedY, worldLocation.getPlane());
break; break;
} }
} }