diff --git a/reaper/cogs/log_reading.py b/reaper/cogs/log_reading.py index 4beb1b8..5f17a19 100644 --- a/reaper/cogs/log_reading.py +++ b/reaper/cogs/log_reading.py @@ -293,9 +293,9 @@ async def on_message(self, message): if "packages" in line: # Split the string after "R2Northstar/mods" to keep the folder name onwards - a = line.split("R2Northstar\packages")[1] - if "R2Northstar\mods" in line: - a = line.split("R2Northstar\mods")[1] + a = line.split("R2Northstar\\packages")[1] + if "R2Northstar\\mods" in line: + a = line.split("R2Northstar\\mods")[1] # Split the previous split at "audio" to cleanly format as "FolderName, audioname" # side note: why the fuck don't we use the mod name at all literally anywhere even when registering the audio fully b = a.split("audio")