[+] Log user ID on login

This commit is contained in:
Clansty
2024-09-11 00:56:15 +08:00
parent 39dc6c576a
commit b7c5d18df1
5 changed files with 33 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ namespace AquaMai
public CheatConfig Cheat { get; set; }
public PerformanceConfig Performance { get; set; }
public FixConfig Fix { get; set; }
public UtilsConfig Utils { get; set; }
public class CheatConfig
{
@@ -55,5 +56,10 @@ namespace AquaMai
public bool ForceAsServer { get; set; } = true;
public bool ForceFreePlay { get; set; } = true;
}
public class UtilsConfig
{
public bool LogUserId { get; set; }
}
}
}