Forum Mod Bakery Docs

Some Sound Effect Mod 1.1

Please login to contribute to the conversation.
This mod makes most of the sound effects sound 100 times better. You won't need to be bored of the same 15-year-old sound effects anymore!

DOWNLOAD v1.1 HERE?!
Apparently, the mod launcher's compiling tool is on the fritz again, because the compiled version of this mod won't read the files inside itself, and this isn't the first time this has happened. If you have already downloaded this mod, you will need to decompile it to get it to work properly. Remember to refresh the launcher afterwards.

v1.1 up there isn't compiled. Just extract the folder inside your Mods folder for now until I can think of a better solution like I did with MAIS (which previously had this bug).
This mod doesn't work when it's compiled because of a quirk in the mod launcher related to you appending a path with backslashes (returned from GetPath() ) to one with foward slashes (/GameData/).

You want to update this line in "Resources\spt.lua" from:
local Path = "/GameData/" .. GetPath()

To this which will change the slashes to forward slashes :
local Path = "/GameData/" .. FixSlashes(GetPath(), false, true)