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