Skip to content

Commit

Permalink
change lang export path
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Sep 13, 2023
1 parent 48950fe commit 446741c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static void registerCommands(CommandDispatcher<CommandSourceStack> comman
ArgumentCommandNode<CommandSourceStack, String> argumentCommandNode = Commands.argument("lang", StringArgumentType.word()).suggests((C1, c2) -> SharedSuggestionProvider.suggest(Minecraft.getInstance().getLanguageManager().getLanguages().stream().map(LanguageInfo::getCode).collect(Collectors.toList()).toArray(new String[0]), c2)).executes(Ctx -> {
try {
File parent = new File(FTBQKeysMod.gameDir.toFile(), "ftbqkeys");
File transFiles = new File(parent, "kubejs/assets/kubejs/lang/");
File transFiles = new File(parent, "export-lang/");
File questsFolder = new File(FTBQKeysMod.configDir.toFile(), "ftbquests");

if (questsFolder.exists()) {
Expand Down

0 comments on commit 446741c

Please sign in to comment.