Skip to content

Commit

Permalink
Adjust ZDoom Fauna module and sound locations
Browse files Browse the repository at this point in the history
  • Loading branch information
dashodanger committed Oct 2, 2024
1 parent 92204cd commit 9d1bfcd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions addons/Obsidian Non-Free Addons/modules/gzdoom_fauna.lua
Original file line number Diff line number Diff line change
Expand Up @@ -475,19 +475,19 @@ function FAUNA_MODULE.all_done()

local dir = "games/doom/data/"
gui.wad_merge_sections(dir .. "Fly.wad")
gui.wad_insert_file("data/sounds/FLYBUZZ.ogg", "FLYBUZZ")
gui.wad_insert_file(dir .. "sounds/FLYBUZZ.ogg", "FLYBUZZ")
end

if PARAM.bool_rats == 1 then
SCRIPTS.decorate = ScriptMan_combine_script(SCRIPTS.decorate, FAUNA_MODULE.DEC)

local dir = "games/doom/data/"
gui.wad_merge_sections(dir .. "Rats.wad")
gui.wad_insert_file("data/sounds/DSRAT.ogg", "DSRAT")
gui.wad_insert_file("data/sounds/DSRATIDL.ogg", "DSRATIDL")
gui.wad_insert_file("data/sounds/DSRATDI1.ogg", "DSRATDI1")
gui.wad_insert_file("data/sounds/DSRATDI2.ogg", "DSRATDI2")
gui.wad_insert_file("data/sounds/RATCRAWL.ogg", "RATCRAWL")
gui.wad_insert_file(dir .. "sounds/DSRAT.ogg", "DSRAT")
gui.wad_insert_file(dir .. "sounds/DSRATIDL.ogg", "DSRATIDL")
gui.wad_insert_file(dir .. "sounds/DSRATDI1.ogg", "DSRATDI1")
gui.wad_insert_file(dir .. "sounds/DSRATDI2.ogg", "DSRATDI2")
gui.wad_insert_file(dir .. "sounds/RATCRAWL.ogg", "RATCRAWL")
end
end

Expand Down

0 comments on commit 9d1bfcd

Please sign in to comment.