Hello all, I setup a 5e macro for a friend playing a Rune Knight. He has Great Weapon Mastery (1s and 2s reroll) and he uses Giants Might for additional damage on some attacks. I opted to use the atkdmg template which displays up to 2 rolls (for advantage/disadvantage) and also allows for damage calculation for two damage types, both the weapon and his Giants Might. The template works perfectly fine when 2 attack rolls are included. It calculates damage properly and even accounts for critical damage for both of the damage types but when I remove one of the rolls, all of a sudden the critical damage calculation no longer appears on a crit roll. Here's the macro with 2 rolls... &{template:atkdmg} {{rname=Greatsword}} {{r1=[[1d20cs>20 +5[STR]+ 3[PROF] +1[WEAPON]]]}} {{always=1}} {{r2=[[1d20cs>20 +5[STR]+ 3[PROF] +1[WEAPON]]]}} {{attack=1}} {{range=5'}} {{damage=1}} {{dmg1flag=1}} {{dmg1=[[2d6ro<2+ 5[STR] +1[WEAPON]]]}} {{dmg1type=Slashing}} {{dmg2flag=1}} {{dmg2=[[1d6]]}} {{dmg2type=Giants Might}} {{crit1=[[2d6ro<2]]}} {{crit2=[[1d6]]}} {{desc=Rak swings ferociously at his enemy!}} Here's the macro with just 1 roll, which doesn't display critical damage.... &{template:atkdmg} {{rname=Greatsword}} {{r1=[[1d20cs>20 +5[STR]+ 3[PROF] +1[WEAPON]]]}} {{always=1}} {{attack=1}} {{range=5'}} {{damage=1}} {{dmg1flag=1}} {{dmg1=[[2d6ro<2+ 5[STR] +1[WEAPON]]]}} {{dmg1type=Slashing}} {{dmg2flag=1}} {{dmg2=[[1d6]]}} {{dmg2type=Giants Might}} {{crit1=[[2d6ro<2]]}} {{crit2=[[1d6]]}} {{desc=Rak swings ferociously at his enemy!}} What am I missing? Any idea why critical damage display on one but not the other? Appreciate the help. -Sam