We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b4ca50 commit 6552b18Copy full SHA for 6552b18
Server/Emulator/Handlers/GateHandlers/Beatmaps.cs
@@ -280,7 +280,7 @@ public static class Beatmaps
280
account.CharacterList.list.Add(character);
281
}
282
283
- if (Convert.ToBoolean(data.playData.finishLevel))
+ if (Convert.ToBoolean(data.playData.life > 0))
284
{
285
character.playCount++;
286
character.exp++;
@@ -403,7 +403,7 @@ public static class Beatmaps
403
account.maxExp = (uint)Math.Round(account.maxExp * 1.2f, 0);
404
405
406
- account.currencyInfo.gold += goldGained;
+ account.currencyInfo.diamond += goldGained;
407
408
var settleData = new cometScene.SettleData
409
0 commit comments