diff --git a/CGamesServer.Business/Services/UserService.cs b/CGamesServer.Business/Services/UserService.cs index 7e18780..52bdd00 100644 --- a/CGamesServer.Business/Services/UserService.cs +++ b/CGamesServer.Business/Services/UserService.cs @@ -152,9 +152,9 @@ namespace CGamesServer.Business.Services if (existUser.SigninTime >= DateTime.Today && existUser.SigninTime < DateTime.Today.AddDays(1)) { //每天最多签到2次 - if (existUser.SigninCount >= 2) + if (existUser.SigninCount >= 100) { - return 2; + return 100; } } }