mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
- Exhumed: fixed sound origin in DoRegenerates.
Should be the actual sprite, not the table index... # Conflicts: # source/games/exhumed/src/items.cpp
This commit is contained in:
parent
7f485bfab1
commit
f7a475aa94
1 changed files with 1 additions and 1 deletions
|
@ -447,7 +447,7 @@ void DoRegenerates()
|
||||||
if (sprite[nSprite].extra <= 0)
|
if (sprite[nSprite].extra <= 0)
|
||||||
{
|
{
|
||||||
BuildAnim(-1, 38, 0, sprite[nSprite].x, sprite[nSprite].y, sprite[nSprite].z, sprite[nSprite].sectnum, 64, 4);
|
BuildAnim(-1, 38, 0, sprite[nSprite].x, sprite[nSprite].y, sprite[nSprite].z, sprite[nSprite].sectnum, 64, 4);
|
||||||
D3PlayFX(StaticSound[kSoundTorchOn], i);
|
D3PlayFX(StaticSound[kSoundTorchOn], nSprite);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue