Rogue Druids
This commit is contained in:
@@ -587,10 +587,14 @@ public class VendorDialogMsg extends ClientNetMsg {
|
||||
}
|
||||
// verify baseclass valid for profession
|
||||
BaseClass bc = pc.getBaseClass();
|
||||
if (bc == null || !promo.isAllowedRune(bc.getToken())) {
|
||||
if (bc == null) {
|
||||
// TODO send client promotion error
|
||||
return;
|
||||
}
|
||||
if(!promo.isAllowedRune(bc.getToken())){
|
||||
if(!bc.getName().equals("Rogue") && !promo.getName().equals("Druid"))
|
||||
return;
|
||||
}
|
||||
|
||||
if(race.getRaceRuneID() != 1999) {
|
||||
// verify gender
|
||||
|
||||
@@ -150,8 +150,6 @@ public class PromotionClass extends AbstractGameObject {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if(this.getName().equals("Druid") && token == 2502)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user