基本信息
我的世界Java版本
1.21.4
平台
Fabric
运行环境
详情信息
许可证 CC0-1.0
发布于 2025-04-12
更新于 2025-04-24
更新日志
0.0.1+build.21-hotfix.2 补丁更新
修复/sex命令中buildNested Commands(int currentDepth)的递归方法导致的内存泄漏。
// 导致内存泄漏的方法
private static ArgumentBuilder<ServerCommandSource, ?> buildNestedCommands(int currentDepth) {
if (currentDepth >= MAX_NESTING_DEPTH) {
return CommandManager.literal(""); // 达到最大深度时停止
}
return CommandManager.literal("sexas")
.then(CommandManager.argument("nextTarget", EntityArgumentType.entities())
.then(buildNestedCommands(currentDepth + 1)))
.then(CommandManager.literal("sexat")
.then(CommandManager.argument("nextTarget", EntityArgumentType.entities())
.then(buildNestedCommands(currentDepth + 1))));
}
添加垂直挖矿机
更多信息
资源类型
Minecraft资源发布版本
Release版本号
0.0.1+build.21-hotfix.2运行环境
游戏版本
1.21.4下载量
33发布时间
2025-04-17 23:58:21创作者
Redstone2337
Member




