Files
2025-06-27 23:59:47 +08:00

19 lines
538 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# AniCheatMove
class in mod.common.minecraftEnum
- 描述
反作弊配置枚举值,移动检查开关
```python
class AniCheatMove(object):
CheckStyle = "server-authoritative-movement" # 位移检查的模式
MinCorrectDelayTick = "player-rewind-min-correction-delay-ticks" # 服务端从发现作弊到发送纠正指令的最小tick数0表示发现作弊时每帧发送纠正指令(int)
TickHistorySize = "player-rewind-history-size-ticks" # 客户端保存历史帧数用于倒带模拟。每秒20帧(int)
```