// DJS-OEI 3/25/2004
// The Ancient Lightsaber Form provides bonuses to saves,
// which we handle as decreases to the DC.
if( IsFormActive( oTarget, FORM_LIGHTSABER_ANCIENT_I ) ||
IsFormActive( oTarget, FORM_LIGHTSABER_ANCIENT_II ) ) {
// +1 bonus to save.
nMod -= 1;
}
else if( IsFormActive( oTarget, FORM_LIGHTSABER_ANCIENT_III ) ) {
// +2 bonus to save.
nMod -= 2;
}