Update prc_prereq.nss

Ooze & plant can now enter the Soul Eater PrC.
This commit is contained in:
Jaysyn904 2024-03-12 19:44:29 -04:00
parent 6aaf05a637
commit 88577b66fd

View File

@ -784,16 +784,21 @@ void SoulEater(object oPC)
SetLocalInt(oPC, "PRC_PrereqSoulEater", 1);
int nRace = MyPRCGetRacialType(oPC);
if(nRace == RACIAL_TYPE_ABERRATION
if(
|| nRace == RACIAL_TYPE_ABERRATION
|| nRace == RACIAL_TYPE_OOZE
|| nRace == RACIAL_TYPE_PLANT
|| nRace == RACIAL_TYPE_ANIMAL
|| nRace == RACIAL_TYPE_BEAST
|| nRace == RACIAL_TYPE_DRAGON
|| nRace == RACIAL_TYPE_ELEMENTAL
|| nRace == RACIAL_TYPE_FEY
|| nRace == RACIAL_TYPE_GIANT
|| nRace == RACIAL_TYPE_HUMANOID_MONSTROUS
|| nRace == RACIAL_TYPE_MAGICAL_BEAST
|| nRace == RACIAL_TYPE_OUTSIDER
|| nRace == RACIAL_TYPE_FEY
|| nRace == RACIAL_TYPE_GIANT
|| nRace == RACIAL_TYPE_ELEMENTAL)
)
SetLocalInt(oPC, "PRC_PrereqSoulEater", 0);
}