diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-03-17 21:54:05 +0900 |
|---|---|---|
| committer | Sho Sakuma <me@m1sk9.dev> | 2026-03-17 21:54:05 +0900 |
| commit | 1812e3558db357ddd21d3d2fd40df63b2a7f000a (patch) | |
| tree | 1439a8679015cfd41fd2b135a7c65544300b8475 | |
| parent | 36f25c7878ac71444d712af7cca8e785ee07a719 (diff) | |
| download | LunaticChat-1812e3558db357ddd21d3d2fd40df63b2a7f000a.tar.gz LunaticChat-1812e3558db357ddd21d3d2fd40df63b2a7f000a.tar.bz2 LunaticChat-1812e3558db357ddd21d3d2fd40df63b2a7f000a.zip | |
feat: Remove permission
| -rw-r--r-- | docs/src/admin-guide/management-data.md | 18 | ||||
| -rw-r--r-- | docs/src/en/admin-guide/management-data.md | 18 | ||||
| -rw-r--r-- | platform-paper/src/main/resources/paper-plugin.yml | 4 |
3 files changed, 2 insertions, 38 deletions
diff --git a/docs/src/admin-guide/management-data.md b/docs/src/admin-guide/management-data.md index e557894..9255721 100644 --- a/docs/src/admin-guide/management-data.md +++ b/docs/src/admin-guide/management-data.md @@ -11,7 +11,6 @@ LunaticChat は、チャンネルデータや設定情報をローカルディスクに保存します. - `channels.json`: チャンネル情報を保存するファイルです. -- `chatmodes.json`: プレイヤーのチャットモード設定を保存するファイルです. - `conversion_cache.json`: チャンネル変換のキャッシュを保存するファイルです. - `player-settings.yaml`: プレイヤーごとの設定情報を保存するファイルです. @@ -23,7 +22,7 @@ LunaticChat のデータの安全性を確保するために,定期的にバ ### `channels.json` -`channels.json` ファイルは、LunaticChat が管理するチャンネルの情報を保存します.このファイルには,チャンネル名、参加者リスト、チャットモードなどの情報が含まれます. +`channels.json` ファイルは、LunaticChat が管理するチャンネルの情報を保存します.このファイルには,チャンネル名、参加者リストなどの情報が含まれます. ```json { @@ -52,21 +51,6 @@ LunaticChat のデータの安全性を確保するために,定期的にバ } ``` -### `chatmodes.json` - -`chatmodes.json` ファイルは、プレイヤーのチャットモード設定を保存します.このファイルには,プレイヤーごとのチャットモード情報が含まれます. - -```json -{ - "modes": { - "aed5efd4-551b-3965-bc28-ae21aa072a66": "CHANNEL", - "ceaea267-39dd-3bac-931c-761ada671ebe": "CHANNEL", - "a01e3843-e521-3998-958a-f459800e4d11": "CHANNEL", - "681f539b-8bb8-3f85-85e5-a2945f6c6539": "GLOBAL" - } -} -``` - ### `conversion_cache.json` `conversion_cache.json` ファイルは、チャンネル変換のキャッシュを保存します.このファイルには,プレイヤーごとのチャンネル変換情報が含まれます. diff --git a/docs/src/en/admin-guide/management-data.md b/docs/src/en/admin-guide/management-data.md index 3f09506..0255bf0 100644 --- a/docs/src/en/admin-guide/management-data.md +++ b/docs/src/en/admin-guide/management-data.md @@ -11,7 +11,6 @@ These data files are essential to the operation of LunaticChat. Direct editing m LunaticChat saves channel data and configuration information to local disk. - `channels.json`: Stores channel information. -- `chatmodes.json`: Stores player chat mode settings. - `conversion_cache.json`: Stores cache for channel conversion. - `player-settings.yaml`: Stores player-specific settings. @@ -23,7 +22,7 @@ To ensure the safety of your LunaticChat data, we recommend creating regular bac ### `channels.json` -The `channels.json` file stores information about channels managed by LunaticChat. This file contains information such as channel names, participant lists, and chat modes. +The `channels.json` file stores information about channels managed by LunaticChat. This file contains information such as channel names and participant lists. ```json { @@ -52,21 +51,6 @@ The `channels.json` file stores information about channels managed by LunaticCha } ``` -### `chatmodes.json` - -The `chatmodes.json` file stores player chat mode settings. This file contains chat mode information for each player. - -```json -{ - "modes": { - "aed5efd4-551b-3965-bc28-ae21aa072a66": "CHANNEL", - "ceaea267-39dd-3bac-931c-761ada671ebe": "CHANNEL", - "a01e3843-e521-3998-958a-f459800e4d11": "CHANNEL", - "681f539b-8bb8-3f85-85e5-a2945f6c6539": "GLOBAL" - } -} -``` - ### `conversion_cache.json` The `conversion_cache.json` file stores cache for channel conversion. This file contains channel conversion information for each player. diff --git a/platform-paper/src/main/resources/paper-plugin.yml b/platform-paper/src/main/resources/paper-plugin.yml index cd37c13..3300917 100644 --- a/platform-paper/src/main/resources/paper-plugin.yml +++ b/platform-paper/src/main/resources/paper-plugin.yml @@ -50,10 +50,6 @@ permissions: default: true lunaticchat.command.lc.channel.ownership: default: true - lunaticchat.command.lc.chatmode: - default: true - lunaticchat.command.lc.chatmode.toggle: - default: true lunaticchat.spy: default: op |
