new spell ATR

This commit is contained in:
2025-02-21 11:27:35 -06:00
parent 43631af53b
commit c8a95cab41
2 changed files with 80 additions and 1 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ public class PrintStatsCmd extends AbstractDevCmd {
newOut += "=== POWERS ===" + newline;
for(CharacterPower power : pc.getPowers().values()){
if(power.getPower().requiresHitRoll) {
newOut += power.getPower().name + " ATR: " + (int) CharacterSkill.getATR(pc, power.getPower().skillName) + newline;
newOut += power.getPower().name + " ATR: " + (int) PlayerCombatStats.getSpellAtr(pc,power) + newline;
}
}
throwbackInfo(pc, newOut);