Skip to content

Commit 4c77922

Browse files
committed
Moving metadata property in SubmitScore-api to before onComplete-API by using an overload instead of default value.
1 parent 2099892 commit 4c77922

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/Game/LootLockerSDKManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1862,9 +1862,9 @@ public static void GetScoreListOriginal(int leaderboardId, int count, int after,
18621862
LootLockerAPIManager.GetScoreList(request, onComplete);
18631863
}
18641864

1865-
public static void SubmitScore(string memberId, int score, int leaderboardIdAction, Action<LootLockerSubmitScoreResponse> onComplete)
1865+
public static void SubmitScore(string memberId, int score, int leaderboardId, Action<LootLockerSubmitScoreResponse> onComplete)
18661866
{
1867-
SubmitScore(memberId, score, leaderboardIdAction, "", onComplete);
1867+
SubmitScore(memberId, score, leaderboardId, "", onComplete);
18681868
}
18691869

18701870
public static void SubmitScore(string memberId, int score, int leaderboardId, string metadata, Action<LootLockerSubmitScoreResponse> onComplete)

0 commit comments

Comments
 (0)