Skip to content

Commit 93cb5aa

Browse files
committed
docs: update README
1 parent 30366d2 commit 93cb5aa

File tree

4 files changed

+30
-17
lines changed

4 files changed

+30
-17
lines changed

README-en.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ Build with [Preprocessor](https://github.com/ReplayMod/preprocessor)
1515

1616
Most other MC versions that are the same as the supported major versions but have different minor versions can be directly installed and work properly, but **the stability cannot be guaranteed. _Please use them with caution_**
1717

18-
| Minecraft Version | Support Status |
19-
|-------------------|---------------------------------------------------------------------------|
20-
| 1.20.4 | Supporting, developing actively |
21-
| 1.20.1 | Supporting, developing actively |
22-
| 1.19.3 | Supporting, developing actively |
23-
| 1.18.2 | Supporting, developing actively |
24-
| 1.17.1 | Supporting, developing actively |
25-
| 1.16.5 | Not supporting, development stopped (supporting stopped on `Jan 8, 2023`) |
18+
| Minecraft Version | Support Status |
19+
|-------------------|--------------------------------------------------------------------------|
20+
| 1.21.5 | Supporting, developing actively |
21+
| 1.21 | Supporting, developing actively |
22+
| 1.20.4 | Supporting, developing actively |
23+
| 1.20.1 | Not supporting, development stopped (supporting stopped on Jun 18, 2025) |
24+
| 1.19.3 | Not supporting, development stopped (supporting stopped on Jun 18, 2025) |
25+
| 1.18.2 | Not supporting, development stopped (supporting stopped on Jun 18, 2025) |
26+
| 1.17.1 | Supporting, developing actively |
27+
| 1.16.5 | Not supporting, development stopped (supporting stopped on Jan 8, 2023) |
2628

2729
## Rules
2830

@@ -300,6 +302,8 @@ This rule force any bot use offline uuid.
300302

301303
### cceSuppressionCrashFix
302304

305+
**just for versions below 1.21**
306+
303307
Prevent CCE Suppression Crashes,watch [Void0's bilibili video](https://www.bilibili.com/video/BV1Hu4y1o71G/) for more infomation.
304308

305309
**Experimential rule**
@@ -392,7 +396,7 @@ Don't spawn bats!!!
392396
- Log every update suppression
393397

394398
### cceSuppressionCrash
395-
399+
**just for versions below 1.21**
396400
- CCE suppressed crashes logger,is simular to carpet rule `updateSuppressedCrash`
397401

398402
### blockUpdate

README.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,16 @@ Language: [English](https://github.com/OptiJava/OptCarpetAddition/blob/master/RE
1414

1515
其他与受支持的版本大版本相同小版本不同的MC版本,大多数可以直接安装正常工作,但是**不能保证稳定性,请谨慎使用**
1616

17-
| Minecraft 版本 | 支持状态 |
18-
|--------------|---------------------------|
19-
| 1.20.4 | 支持,积极开发 |
20-
| 1.20.1 | 支持,积极开发 |
21-
| 1.19.3 | 支持,积极开发 |
22-
| 1.18.2 | 支持,积极开发 |
23-
| 1.17.1 | 支持,积极开发 |
24-
| 1.16.5 | 不支持,停止维护(在`2023/1/8`停止维护) |
17+
| Minecraft 版本 | 支持状态 |
18+
|--------------|----------------------------|
19+
| 1.21.5 | 支持,积极开发 |
20+
| 1.21 | 支持,积极开发 |
21+
| 1.20.4 | 支持,积极开发 |
22+
| 1.20.1 | 不支持,停止维护(在`2025/6/18`停止维护) |
23+
| 1.19.3 | 不支持,停止维护(在`2025/6/18`停止维护) |
24+
| 1.18.2 | 不支持,停止维护(在`2025/6/18`停止维护) |
25+
| 1.17.1 | 支持,积极开发 |
26+
| 1.16.5 | 不支持,停止维护(在`2023/1/8`停止维护) |
2527

2628
## 规则
2729

@@ -301,6 +303,8 @@ DispenserBlockEntity dispenserBlockEntity = (DispenserBlockEntity)blockPointerIm
301303

302304
### cceSuppressionCrashFix
303305

306+
**仅1.21以下**
307+
304308
防止cce更新抑制器导致服务器崩溃,详情请看[Void0的视频](https://www.bilibili.com/video/BV1Hu4y1o71G/)
305309

306310
**实验性规则**
@@ -393,6 +397,7 @@ DispenserBlockEntity dispenserBlockEntity = (DispenserBlockEntity)blockPointerIm
393397
- 记录每一次更新抑制
394398

395399
### cceSuppressionCrash
400+
**仅1.21以下**
396401
- CCE更新抑制器崩溃记录,类似于carpet的`updateSuppressedCrash`
397402

398403
### blockUpdate

src/main/java/io/github/optijava/opt_carpet_addition/OptCarpetSettings.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,13 @@ public class OptCarpetSettings {
151151
public static boolean optimizePlayerConnect = false;
152152
//#endif
153153

154+
//#if MC < 11900
154155
@Rule(
155156
desc = "Handle player teleport in a new thread to reduce the lag.",
156157
category = {RuleCategory.OPTIMIZATION, RuleCategory.EXPERIMENTAL}
157158
)
158159
public static boolean optimizeTeleport = false;
160+
//#endif
159161

160162
@Rule(
161163
desc = "Print info log when players submit command",

src/main/java/io/github/optijava/opt_carpet_addition/logger/LoggerRegister.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ public static void registry() {
2727
//#if MC < 11900
2828
LoggerRegistry.registerLogger("updateSuppression", UpdateSuppressionLogger.INSTANCE);
2929
//#endif
30+
//#if MC < 12100
3031
LoggerRegistry.registerLogger("cceSuppressionCrash", CCESuppressionCrashLogger.INSTANCE);
32+
//#endif
3133
LoggerRegistry.registerLogger("blockUpdate", BlockUpdateLogger.INSTANCE);
3234
}
3335
}

0 commit comments

Comments
 (0)