PlayerStorageFileFix.java
net.minecraft.util.filefix.fixes.PlayerStorageFileFix
信息
- 全限定名:net.minecraft.util.filefix.fixes.PlayerStorageFileFix
- 类型:public class
- 包:net.minecraft.util.filefix.fixes
- 源码路径:src/main/java/net/minecraft/util/filefix/fixes/PlayerStorageFileFix.java
- 起始行号:L7
- 继承:FileFix
- 职责:
TODO
字段/常量
- 无
内部类/嵌套类型
- 无
构造器
public PlayerStorageFileFix(Schema schema) @ L8
- 构造器名:PlayerStorageFileFix
- 源码定位:L8
- 修饰符:public
参数:
- schema: Schema
说明:
TODO
方法
下面的方法块按源码顺序生成。
public void makeFixer() @ L12
- 方法名:makeFixer
- 源码定位:L12
- 返回类型:void
- 修饰符:public
参数:
- 无
说明:
TODO
代码
public class PlayerStorageFileFix extends FileFix {
public PlayerStorageFileFix(Schema schema) {
super(schema);
}
@Override
public void makeFixer() {
this.addFileFixOperation(FileFixOperations.move("advancements", "players/advancements"));
this.addFileFixOperation(FileFixOperations.move("playerdata", "players/data"));
this.addFileFixOperation(FileFixOperations.move("stats", "players/stats"));
}
}引用的其他类
-
- 引用位置:
参数
- 引用位置:
-
- 引用位置:
继承
- 引用位置:
-
- 引用位置:
方法调用 - 关联成员:
FileFixOperations.move()
- 引用位置: