Skip to content

Commit bcafcc3

Browse files
nicholassaylorjonloveslegoskindasneakiScootyPuffJr1
authored andcommitted
Docs, Undertale: Added Suggestions Missed in ArchipelagoMW#2285 (ArchipelagoMW#2435)
Co-authored-by: jonloveslegos <[email protected]> Co-authored-by: kindasneaki <[email protected]> Co-authored-by: ScootyPuffJr1 <[email protected]>
1 parent ab6d0fd commit bcafcc3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

UndertaleClient.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ def _cmd_resync(self):
2727
self.ctx.syncing = True
2828

2929
def _cmd_patch(self):
30-
"""Patch the game."""
30+
"""Patch the game. Only use this command if /auto_patch fails."""
3131
if isinstance(self.ctx, UndertaleContext):
3232
os.makedirs(name=os.path.join(os.getcwd(), "Undertale"), exist_ok=True)
3333
self.ctx.patch_game()
3434
self.output("Patched.")
3535

3636
def _cmd_savepath(self, directory: str):
37-
"""Redirect to proper save data folder. (Use before connecting!)"""
37+
"""Redirect to proper save data folder. This is necessary for Linux users to use before connecting."""
3838
if isinstance(self.ctx, UndertaleContext):
3939
self.ctx.save_game_folder = directory
4040
self.output("Changed to the following directory: " + self.ctx.save_game_folder)
@@ -67,7 +67,7 @@ def _cmd_auto_patch(self, steaminstall: typing.Optional[str] = None):
6767
self.output("Patching successful!")
6868

6969
def _cmd_online(self):
70-
"""Makes you no longer able to see other Undertale players."""
70+
"""Toggles seeing other Undertale players."""
7171
if isinstance(self.ctx, UndertaleContext):
7272
self.ctx.update_online_mode(not ("Online" in self.ctx.tags))
7373
if "Online" in self.ctx.tags:

worlds/undertale/docs/en_Undertale.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ If you press `W` while in the save menu, you will teleport back to the flower ro
5656
The following commands are only available when using the UndertaleClient to play with Archipelago.
5757

5858
- `/resync` Manually trigger a resync.
59-
- `/patch` Patch the game.
60-
- `/savepath` Redirect to proper save data folder. (Use before connecting!)
59+
- `/savepath` Redirect to proper save data folder. This is necessary for Linux users to use before connecting.
6160
- `/auto_patch` Patch the game automatically.
62-
- `/online` Makes you no longer able to see other Undertale players.
61+
- `/patch` Patch the game. Only use this command if `/auto_patch` fails.
62+
- `/online` Toggles seeing other Undertale players.
6363
- `/deathlink` Toggles deathlink

0 commit comments

Comments
 (0)