From a39a7c7e381d19018d8542f7159bf2f3cb33739b Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 20 Jul 2025 06:52:57 -0400 Subject: [PATCH] Remove quotes in YAML config example from USAGE This was invalid YAML and was causing confusion, apparently YAML needs backslashes escaped but only in quotes. Since this doesn't really need to be quoted, I just removed them. --- USAGE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/USAGE.md b/USAGE.md index 97e1e38..818b7c4 100644 --- a/USAGE.md +++ b/USAGE.md @@ -34,7 +34,7 @@ Afterwards, create a `config.yaml` in the current directory. Currently the minim ```yaml filesystem: - game_path: "C:\Program Files (x86)\SquareEnix\FINAL FANTASY XIV - A Realm Reborn\game" + game_path: C:\Program Files (x86)\SquareEnix\FINAL FANTASY XIV - A Realm Reborn\game ``` More configuration options can be found in `config.rs`, such as changing the ports services run on. If you plan on just running it locally for yourself, you don't need to set anything else.