Fixed War Mind prereqs

Fixed War Mind prereqs.
This commit is contained in:
Jaysyn904 2023-08-22 18:36:18 -04:00
parent 5914ed2ab5
commit f1d8241acf
2 changed files with 15 additions and 1 deletions

View File

@ -1,6 +1,6 @@
//::///////////////////////////////////////////////
//:: [PRC Feat Router]
//:: [inc_prc_function.nss]
//:: [prc_inc_function.nss]
//:://////////////////////////////////////////////
//:: This file serves as a hub for the various
//:: PRC passive feat functions. If you need to

View File

@ -687,6 +687,19 @@ void WildMageReq(object oPC)
SetLocalInt(oPC, "PRC_PresWildMageReq", 0);
}
void Warmind(object oPC)
{
SetLocalInt(oPC, "PRC_AllowWarmind", 1);
int iPwrPoints = GetMaximumPowerPoints(oPC);
//:: Requires at least one Power Point
if (iPwrPoints > 0)
{
SetLocalInt(oPC, "PRC_AllowWarmind", 0);
}
}
void DalQuor(object oPC)
{
SetLocalInt(oPC, "PRC_PrereqDalQuor", 1);
@ -1503,6 +1516,7 @@ void main()
RacialHD(oPC);
Virtuoso(oPC);
LichPrereq(oPC);
Warmind(oPC);
DalQuor(oPC);
Pyro(oPC);
Suel();