Fixed quest bug

Fixed quest bugs that resulted from GetNumberPartyMembers() finally being fixed.  Added PRC8 Discord journal entry.  Full compile.
This commit is contained in:
Jaysyn904
2025-03-01 09:38:16 -05:00
parent ee57aebbaf
commit 905a60ebad
15 changed files with 94 additions and 40 deletions

View File

@@ -24,8 +24,7 @@ void main()
int nGold = 50000;
//:: Get gold for each PC
//:: Take one off GetNumberPartyMembers(), see known bugs
int nMembers = GetNumberPartyMembers(oPC) - 1;
int nMembers = GetNumberPartyMembers(oPC);
//:: Give the correct gold to all of them
GiveGoldToAll(oPC, nGold/nMembers);