我有一个模组想要读取splits.yml
minecraft 目录中的其他配置文件(config.txt 等)。我不知道我会怎么做。我的第一个想法是使用 Mixin
@Mixin(GameOptions.class)
public class GameOptionsMixin {
@Shadow @Final private File optionsFile;
@Inject(method = "load", at = @At("RETURN"))
private void load(CallbackInfo info) {
File splits = new File(optionsFile.getParent(), "splits.yml");
}
}
但我不知道如何提取价值。我也不能相信该文件夹会.minecraft
像许多织物用户使用 MultiMC 一样。