Add the place field to default sound table

This commit is contained in:
PilzAdam 2012-11-23 15:22:37 +01:00
parent 6687b5504d
commit e7f5400fde
1 changed files with 2 additions and 0 deletions

View File

@ -631,6 +631,8 @@ function default.node_sound_defaults(table)
{name="", gain=1.0}
table.dug = table.dug or
{name="default_dug_node", gain=1.0}
table.place = table.place or
{name="default_place_node", gain=0.5}
return table
end