Fixed feat.2da
Fixed feat.2da. Updated release archive.
This commit is contained in:
parent
88577b66fd
commit
7fe9e5bfdb
1
.gitignore
vendored
1
.gitignore
vendored
@ -18,3 +18,4 @@ trunk/compileepic.bat
|
||||
*.ncs
|
||||
*.erf
|
||||
*.log
|
||||
nwn/nwnprc/trunk/makefile.temp
|
||||
|
BIN
Release/PRC8_20240313.7z
Normal file
BIN
Release/PRC8_20240313.7z
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -95,6 +95,7 @@ module.OnPlayerDying : prc_ondying
|
||||
module.OnPlayerEquipItem : prc_equip
|
||||
module.OnPlayerLevelUp : prc_levelup
|
||||
module.OnPlayerRest : prc_rest
|
||||
module.OnPlayerTarget : prc_onplaytarget
|
||||
module.OnPlayerRespawn : prc_onrespawn
|
||||
module.OnUnaquireItem : prc_onunaquire
|
||||
module.OnPlayerUnequipItem : prc_unequip
|
||||
|
@ -6838,6 +6838,7 @@ epicspellobjs\wander_unseen.ncs
|
||||
2das\disease.2da \
|
||||
2das\dmgxp.2da \
|
||||
2das\domains.2da \
|
||||
2das\ds_feat.2da \
|
||||
2das\ecl.2da \
|
||||
2das\effecticons.2da \
|
||||
2das\encounter_areas.2da \
|
||||
|
@ -784,8 +784,7 @@ 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
|
||||
@ -796,9 +795,7 @@ void SoulEater(object oPC)
|
||||
|| nRace == RACIAL_TYPE_GIANT
|
||||
|| nRace == RACIAL_TYPE_HUMANOID_MONSTROUS
|
||||
|| nRace == RACIAL_TYPE_MAGICAL_BEAST
|
||||
|| nRace == RACIAL_TYPE_OUTSIDER
|
||||
|
||||
)
|
||||
|| nRace == RACIAL_TYPE_OUTSIDER)
|
||||
SetLocalInt(oPC, "PRC_PrereqSoulEater", 0);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user