- fixed: The S_Sound script export did not call the actual function.

This commit is contained in:
Christoph Oelckers 2017-02-14 17:03:31 +01:00
parent 7b1645d239
commit 2e11b4f346
1 changed files with 1 additions and 0 deletions

View File

@ -1256,6 +1256,7 @@ DEFINE_ACTION_FUNCTION(DObject, S_Sound)
PARAM_INT(channel);
PARAM_FLOAT_DEF(volume);
PARAM_FLOAT_DEF(attn);
S_Sound(channel, id, volume, attn);
return 0;
}