@@ -421,7 +421,7 @@ public static class HeirGeneration
421421 /// Used to modify character data after character randomization by either the Contrarian trait or by the use of the Transmogrifier<br></br>
422422 /// Ran at the end of <see cref="CharacterCreator.ApplyRandomizeKitTrait"/>
423423 /// </summary>
424- /// <param name="characterData ">The randomized heirs CharacterData</param>
424+ /// <param name="data ">The randomized heirs CharacterData</param>
425425 public delegate void ModifyCharacterRandomization_delegate ( CharacterData data ) ;
426426
427427 /// <inheritdoc cref="ModifyCharacterRandomization_delegate"/>
@@ -434,7 +434,7 @@ internal static void ModifyCharacterRandomization_Invoke(CharacterData data) {
434434 /// <summary>
435435 /// Used to modify character data of generated heirs
436436 /// </summary>
437- /// <param name="characterData ">The generated heirs <see cref="CharacterData" /></param>
437+ /// <param name="data ">The generated heirs <see cref="CharacterData" /></param>
438438 /// <param name="classLocked">Whether the heirs class was locked by a Soul Shop ugrade</param>
439439 /// <param name="spellLocked">Whether the heirs spell was locked by a Soul Shop ugrade</param>
440440 public delegate void ModifyCharacterData_delegate ( CharacterData data , bool classLocked , bool spellLocked ) ;
@@ -450,7 +450,7 @@ internal static void ModifyCharacterData_Invoke(CharacterData data, bool classLo
450450 /// Used to modify look data of generated heirs
451451 /// </summary>
452452 /// <param name="lookData">The generated heirs <see cref="PlayerLookController" /></param>
453- /// <param name="characterData ">The generated heirs <see cref="CharacterData" /></param>
453+ /// <param name="data ">The generated heirs <see cref="CharacterData" /></param>
454454 public delegate void ModifyCharacterLook_delegate ( PlayerLookController lookData , CharacterData data ) ;
455455
456456 /// <inheritdoc cref="ModifyCharacterLook_delegate"/>
0 commit comments