mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-16 11:57:14 -05:00
Reverted to 4.56 to track down a bug that started in 4.57. Bugfixed back to 4.61. It's amazing the damage that one skipped case statement can do.
11 lines
302 B
Plaintext
11 lines
302 B
Plaintext
#include "moi_inc_moifunc"
|
|
#include "psi_inc_psifunc"
|
|
|
|
void main()
|
|
{
|
|
object oMeldshaper = OBJECT_SELF;
|
|
int nEssentia = GetEssentiaInvestedFeat(oMeldshaper, FEAT_AZURE_TALENT);
|
|
if (GetCanBindChakra(oMeldshaper, CHAKRA_CROWN)) nEssentia += 2;
|
|
|
|
GainPowerPoints(oMeldshaper, nEssentia, TRUE, TRUE);
|
|
} |