parent
8acd6faf94
commit
67000cbc63
|
|
@ -174,6 +174,9 @@ namespace Guru
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal void SetBLevelValue(int value) => OnLevelChanged(value);
|
||||||
|
internal void SetBPlayValue(int value) => OnPlayedChanged(value);
|
||||||
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -370,9 +370,9 @@ namespace Guru
|
||||||
{
|
{
|
||||||
if (!InitConfig.AutoRecordFinishedLevels)
|
if (!InitConfig.AutoRecordFinishedLevels)
|
||||||
{
|
{
|
||||||
Model.SuccessLevelId = blevel;
|
Model.SetBLevelValue(blevel);
|
||||||
|
Analytics.BLevel = blevel;
|
||||||
}
|
}
|
||||||
|
|
||||||
SetUserProperty(Consts.PropertyLevel, $"{blevel}");
|
SetUserProperty(Consts.PropertyLevel, $"{blevel}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -380,9 +380,9 @@ namespace Guru
|
||||||
{
|
{
|
||||||
if (!InitConfig.AutoRecordFinishedLevels)
|
if (!InitConfig.AutoRecordFinishedLevels)
|
||||||
{
|
{
|
||||||
Model.TotalPlayedCount = bplay;
|
Model.SetBPlayValue(bplay);
|
||||||
|
Analytics.BPlay = bplay;
|
||||||
}
|
}
|
||||||
|
|
||||||
SetUserProperty(Consts.PropertyPlay, $"{bplay}");
|
SetUserProperty(Consts.PropertyPlay, $"{bplay}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue