trainers reverted to normal ranking time

This commit is contained in:
2024-03-24 21:08:31 -05:00
parent 557f89d2e0
commit 797b863fe1
+7 -3
View File
@@ -1152,9 +1152,13 @@ public class NPC extends AbstractCharacter {
upgradeTime = Integer.MAX_VALUE;
if (this.getRank() < 7)
return 5;
if (this.getRank() < 7) {
if(this.contract.getName().contains("Trainer") == false){
return 5;
}else{
return this.getRank() * 8;
}
}
return 0;
}