fix for likes and hates of IMPs characters (not sure it actually is handled for IMP characters, but the previous fix make it to be Barry instead of nobody)

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@9076 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
Shadooow
2021-06-12 12:48:56 +00:00
parent 0c1a74b3d1
commit f71a462445
+12
View File
@@ -212,6 +212,18 @@ void CreateACharacterFromPlayerEnteredStats( void )
gMercProfiles[LaptopSaveInfo.iIMPIndex].usApproachFactor[3] = 100;
gMercProfiles[LaptopSaveInfo.iIMPIndex].uiBlinkFrequency = 3000;
gMercProfiles[LaptopSaveInfo.iIMPIndex].uiExpressionFrequency = 2000;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bBuddy[0] = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bBuddy[1] = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bBuddy[2] = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bBuddy[3] = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bBuddy[4] = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bLearnToLike = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bHated[0] = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bHated[1] = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bHated[2] = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bHated[3] = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bHated[4] = 255;
gMercProfiles[LaptopSaveInfo.iIMPIndex].bLearnToHate = 255;
}
void CreatePlayerAttitude( void )