This commit is contained in:
boybook
2025-12-01 20:59:16 +08:00
parent 12738a142c
commit 760c2dd9ad
5535 changed files with 21070 additions and 2021 deletions

View File

@@ -0,0 +1,19 @@
# PermissionChangeCause
class in mod.common.minecraftEnum
- 描述
玩家权限变更原因枚举
```python
class PermissionChangeCause(object):
ProgrammingInterfaceCaused = 1 # API变更
CommandCaused = 2 # 指令变更(包含玩家输入/命令方块)
UserInterfaceCaused = 3 # 房主变更(也即房主在设置给他人变更)
CocosInterfaceCaused = 4 # cocos发起变更
```