-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for forgotten lands sounds
- Loading branch information
Showing
4 changed files
with
66 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
name = xcompat | ||
description = Provides cross compatibility between mods and games for sounds and crafting materials. | ||
optional_depends = default, fl_stone, fl_trees, mcl_sounds, hades_sounds, ks_sounds, nodes_nature, fl_topsoil, fl_trees, mcl_core, farming, x_farming | ||
optional_depends = default, fl_stone, fl_trees, mcl_sounds, hades_sounds, ks_sounds, nodes_nature, fl_topsoil, fl_trees, mcl_core, farming, x_farming, sounds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
local sound_api = {} | ||
|
||
function sound_api.node_sound_default(soundtable) | ||
return soundtable | ||
end | ||
|
||
function sound_api.node_sound_stone_defaults(soundtable) | ||
return sounds.stone(soundtable) | ||
end | ||
|
||
function sound_api.node_sound_dirt_defaults(soundtable) | ||
return sounds.dirt(soundtable) | ||
end | ||
|
||
function sound_api.node_sound_grass_defaults(soundtable) | ||
return sounds.grass(soundtable) | ||
end | ||
|
||
function sound_api.node_sound_sand_defaults(soundtable) | ||
return sounds.sand(soundtable) | ||
end | ||
|
||
function sound_api.node_sound_gravel_defaults(soundtable) | ||
return sounds.gravel(soundtable) | ||
end | ||
|
||
function sound_api.node_sound_wood_defaults(soundtable) | ||
return sounds.wood(soundtable) | ||
end | ||
|
||
function sound_api.node_sound_leaves_defaults(soundtable) | ||
return soundtable | ||
end | ||
|
||
function sound_api.node_sound_glass_defaults(soundtable) | ||
return sounds.glass(soundtable) | ||
end | ||
|
||
function sound_api.node_sound_ice_defaults(soundtable) | ||
return soundtable | ||
end | ||
|
||
function sound_api.node_sound_metal_defaults(soundtable) | ||
return soundtable | ||
end | ||
|
||
function sound_api.node_sound_water_defaults(soundtable) | ||
return soundtable | ||
end | ||
|
||
function sound_api.node_sound_lava_defaults(soundtable) | ||
return soundtable | ||
end | ||
|
||
function sound_api.node_sound_snow_defaults(soundtable) | ||
return soundtable | ||
end | ||
|
||
function sound_api.node_sound_wool_defaults(soundtable) | ||
return soundtable | ||
end | ||
|
||
return sound_api |