From 02a3f2410387ef5c85effef13ba1a41a35165a9f Mon Sep 17 00:00:00 2001 From: Scott Brooks Date: Sun, 9 Jun 2002 06:30:59 +0000 Subject: [PATCH] some changes to the default sounds on doors. --- reaction/game/g_mover.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/reaction/game/g_mover.c b/reaction/game/g_mover.c index d6833466..8864a31b 100644 --- a/reaction/game/g_mover.c +++ b/reaction/game/g_mover.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.44 2002/06/09 06:30:59 blaze +// some changes to the default sounds on doors. +// // Revision 1.43 2002/05/30 21:18:28 makro // Bots should reload/bandage when roaming around // Added "pathtarget" key to all the entities @@ -1443,9 +1446,9 @@ void SP_func_door (gentity_t *ent) { //Elder: can set sounds from here //Blaze: changed default path as per Sze - G_SpawnString( "soundstart", "sound/movers/door_start.wav", &sSndStart ); - G_SpawnString( "soundstop", "sound/movers/door_stop.wav", &sSndStop ); - G_SpawnString( "soundmove", "sound/misc/silence.wav", &sSndMove ); + G_SpawnString( "soundstart", "sound/misc/silence.wav", &sSndStart ); + G_SpawnString( "soundstop", "sound/movers/rdoor_stop.wav", &sSndStop ); + G_SpawnString( "soundmove", "sound/movers/rdoor_move.wav", &sSndMove ); ent->sound1to2 = ent->sound2to1 = G_SoundIndex(sSndMove); ent->soundPos1 = G_SoundIndex(sSndStart); @@ -1562,8 +1565,8 @@ void SP_func_door_rotating ( gentity_t *ent ) { char *sSndStart; //Elder: can set sounds from here - G_SpawnString( "soundstart", "sound/misc/silence.wav", &sSndStart ); - G_SpawnString( "soundstop", "sound/movers/rdoor_stop.wav", &sSndStop ); + G_SpawnString( "soundstart", "sound/movers/rdoor_stop.wav", &sSndStart ); + G_SpawnString( "soundstop", "sound/misc/silence.wav", &sSndStop ); G_SpawnString( "soundmove", "sound/movers/rdoor_move.wav", &sSndMove ); ent->sound1to2 = ent->sound2to1 = G_SoundIndex(sSndMove);