Update Archmage check.

Update Archmage check.
This commit is contained in:
Jaysyn904 2023-02-27 22:07:09 -05:00
parent dae92087d2
commit 28140be897
2 changed files with 7 additions and 0 deletions

Binary file not shown.

View File

@ -529,6 +529,13 @@ int CheckArchmageClass()
FloatingTextStringOnCreature("Archmage may only advance a single arcane class.", OBJECT_SELF, FALSE); FloatingTextStringOnCreature("Archmage may only advance a single arcane class.", OBJECT_SELF, FALSE);
FloatingTextStringOnCreature("Please reselect your feats.", OBJECT_SELF, FALSE); FloatingTextStringOnCreature("Please reselect your feats.", OBJECT_SELF, FALSE);
return TRUE; return TRUE;
}
if(iArchClass < 1)
{
FloatingTextStringOnCreature("Archmage must pick one arcane class to advance at first level.", OBJECT_SELF, FALSE);
FloatingTextStringOnCreature("Please reselect your feats.", OBJECT_SELF, FALSE);
return TRUE;
} }
} }
return FALSE; return FALSE;