From 664c14e241c264c8563d86457eee5633f59f40cf Mon Sep 17 00:00:00 2001 From: hondacrx Date: Thu, 17 Dec 2020 17:15:31 -0500 Subject: [PATCH] Really fix PlayerChoiceResponse loading --- Source/Game/Globals/ObjectManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Game/Globals/ObjectManager.cs b/Source/Game/Globals/ObjectManager.cs index 731af6154..31c670909 100644 --- a/Source/Game/Globals/ObjectManager.cs +++ b/Source/Game/Globals/ObjectManager.cs @@ -9245,9 +9245,10 @@ namespace Game if (!responses.IsNull(16)) response.RewardQuestID.Set(responses.Read(16)); + choice.Responses.Add(response); + ++responseCount; - choice.Responses.Insert(responseId, response); } while (responses.NextRow()); }