Skip to content

Commit 577e2ef

Browse files
Erik Bylundkirre-bylund
authored andcommitted
Fixes after review
1 parent 8d159a7 commit 577e2ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Runtime/Game/LootLockerSDKManager.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3305,7 +3305,7 @@ public static void GetAssetsById(string[] assetIdsToRetrieve, Action<LootLockerA
33053305
}
33063306

33073307
/// <summary>
3308-
/// Grant an Asset Instance to the Player's Inventory.
3308+
/// Grant an Asset to the Player's Inventory.
33093309
/// </summary>
33103310
/// <param name="assetID">The Asset you want to create an Instance of and give to the current player</param>
33113311
public static void GrantAssetToPlayerInventory(int assetID, Action<LootLockerGrantAssetResponse> onComplete)
@@ -3318,7 +3318,7 @@ public static void GrantAssetToPlayerInventory(int assetID, Action<LootLockerGra
33183318
/// </summary>
33193319
/// <param name="assetID">The Asset you want to create an Instance of and give to the current player</param>
33203320
/// <param name="assetVariationID">The id of the Asset Variation you want to grant</param>
3321-
/// <param name="assetRentalOptionID">the rental option id you want to give the Asset Instance</param>
3321+
/// <param name="assetRentalOptionID">The rental option id you want to give the Asset Instance</param>
33223322
/// <param name="onComplete">onComplete Action for handling the response of type LootLockerGrantAssetResponse</param>
33233323
public static void GrantAssetToPlayerInventory(int assetID, int? assetVariationID, int? assetRentalOptionID, Action<LootLockerGrantAssetResponse> onComplete)
33243324
{
@@ -3560,7 +3560,7 @@ public static void OpenALootBoxForAssetInstances(int assetInstanceID, Action<Loo
35603560
/// <summary>
35613561
/// Delete an Asset Instance from the current Player's Inventory.
35623562
/// </summary>
3563-
/// <param name="assetInstanceID">The asset instance ID of the you want to delete from the Players Inventory</param>
3563+
/// <param name="assetInstanceID">The asset instance ID of the asset instance you want to delete from the current Players Inventory</param>
35643564
/// <param name="onComplete">onComplete Action for handling the response of type LootLockerResponse</param>
35653565
public static void DeleteAssetInstanceFromPlayerInventory(int assetInstanceID, Action<LootLockerResponse> onComplete)
35663566
{

0 commit comments

Comments
 (0)