first commit

This commit is contained in:
boybook
2025-03-17 13:24:39 +08:00
commit 9a0334ee84
6410 changed files with 221907 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# AniCheatConsts
class in mod.common.minecraftEnum
- 描述
反作弊配置开关宏定义
```python
class AniCheatConsts(object):
Open = "on" # 反作弊开关:开
Close = "off" # 反作弊开关:关闭
MoveOff = "client-auth" # 没有位移检查,完全信任客户端
MoveOn = "server-auth" # 服务端有位移检查,没有倒带模拟
MoveRewind = "server-auth-with-rewind" # 服务端有位移检查,有倒带模拟
```