Browse Source

disc rune changes for prospector and black mask

lakebane-master
FatBoy-DOTC 7 months ago
parent
commit
60ba6d5b28
  1. 14
      src/engine/net/client/msg/ApplyRuneMsg.java

14
src/engine/net/client/msg/ApplyRuneMsg.java

@ -90,6 +90,9 @@ public class ApplyRuneMsg extends ClientNetMsg { @@ -90,6 +90,9 @@ public class ApplyRuneMsg extends ClientNetMsg {
break;
}
}
if(runeID == 3040)
valid = true;
if (!valid) {
return false;
}
@ -106,6 +109,10 @@ public class ApplyRuneMsg extends ClientNetMsg { @@ -106,6 +109,10 @@ public class ApplyRuneMsg extends ClientNetMsg {
break;
}
}
if(runeID == 3040)
valid = true;
if (!valid) {
return false;
}
@ -122,6 +129,13 @@ public class ApplyRuneMsg extends ClientNetMsg { @@ -122,6 +129,13 @@ public class ApplyRuneMsg extends ClientNetMsg {
break;
}
}
if(runeID == 3040)
valid = true;
if(runeID == 3004 && (playerCharacter.getPromotionClassID() == 2505 || playerCharacter.getPromotionClassID() == 2510))
valid = true;
if (!valid) {
return false;
}

Loading…
Cancel
Save