Shargast_PRC8/_module/Chapter 1/nss/mk_restorebody.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

17 lines
268 B
Plaintext

#include "mk_inc_body"
void main()
{
object oPC = GetPCSpeaker();
if (MK_GetBodyPartToBeModified(oPC)==MK_CRAFTBODY_SAVERESTORE)
{
MK_RestoreBody(oPC, 0);
}
else
{
MK_RestoreBodyPart(oPC);
}
MK_CleanUpBodyPart(oPC);
}