mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-04 08:39:05 +00:00
Quick patch (#316)
- Fixed npc drops/anims - Fixed some combat sounds that were not working - Made Kalphite Queen a multi area
This commit is contained in:
committed by
Daniel Ginovker
parent
bc4320ee68
commit
32bbf1e003
@@ -1706,7 +1706,15 @@ public abstract class Player {
|
||||
|| absX >= 2371 && absX <= 2422 && absY >= 5062 && absY <= 5117
|
||||
|| absX >= 2896 && absX <= 2927 && absY >= 3595 && absY <= 3630
|
||||
|| absX >= 2892 && absX <= 2932 && absY >= 4435 && absY <= 4464
|
||||
|| absX >= 2256 && absX <= 2287 && absY >= 4680 && absY <= 4711) {
|
||||
|| absX >= 2256 && absX <= 2287 && absY >= 4680 && absY <= 4711
|
||||
|| inKqArea()) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean inKqArea() {
|
||||
if (absX >= 3467 && absX <= 3506 && absY >= 9477 && absY <= 9513) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user