mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2025-04-21 19:49:36 +08:00

* 匹配房间 第一部分 * elo匹配 * 设置匹配结束标记 * 传输的room对象错误 * 修复错误的UpdateRoom; 添加SQLMode开关 * 删除创建房间时重复的加入房间代码 * 添加在加入房间时检查是否存在房间 --------- Co-authored-by: yeziuku <yezi@wrss.org>
13 lines
250 B
C#
13 lines
250 B
C#
using Milimoe.FunGame.Core.Api.Utility;
|
|
|
|
namespace Milimoe.FunGame.Server.Utility
|
|
{
|
|
public class TFA : TwoFactorAuthenticator
|
|
{
|
|
public override bool IsAvailable(string username)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|