Merge pull request #111 from rgto/community28

Some missing brackets.
This commit is contained in:
Enthusiast 2023-01-28 15:21:50 -03:00 committed by GitHub
commit 2cd57235a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -151,13 +151,13 @@ namespace DiIiS_NA.GameServer.GSSystem.GameSystem
public void CheckKillMonsterCriteria(ulong gameAccountId, int actorId, int type, bool isHardcore)
{
Logger.MethodTrace($"gameAccountId {gameAccountId}, actorId {actorId}, type {type}, hc {isHardcore}");
BattleNetSocketSend($"ckmc|{gameAccountId}/{actorId}/{type}/{(isHardcore ? "True" : "False")}";
BattleNetSocketSend($"ckmc|{gameAccountId}/{actorId}/{type}/{ (isHardcore ? "True" : "False")}");
}
public void CheckSalvageItemCriteria(ulong gameAccountId, int itemId)
{
Logger.MethodTrace($"gameAccountId {gameAccountId}, itemId {itemId}");
BattleNetSocketSend($"csic|{gameAccountId}/{itemId}";
BattleNetSocketSend($"csic|{gameAccountId}/{itemId}");
}
public void CheckLevelCap(ulong gameAccountId)