# HG changeset patch # User Adam Kaminski # Date 1632544625 14400 # Sat Sep 25 00:37:05 2021 -0400 # Node ID 0c6648bb05d26837a15814fc7bdc270ae095b616 # Parent ea6a08fe1a29ef93e1153d6ffe15886c94279cf2 Fixed a server crash. diff -r ea6a08fe1a29 -r 0c6648bb05d2 src/sv_commands.cpp --- a/src/sv_commands.cpp Thu Sep 23 22:40:21 2021 -0400 +++ b/src/sv_commands.cpp Sat Sep 25 00:37:05 2021 -0400 @@ -3358,7 +3358,7 @@ return; // [AK] If the actor is a player, don't tell clients to play the sound while we're backtracing their movement. - if (( pActor->player ) && ( SERVER_GetClient( pActor->player - players )->bIsBacktracing )) + if (( pActor->player ) && ( pActor->player->mo == pActor ) && ( SERVER_GetClient( pActor->player - players )->bIsBacktracing )) return; // [BB] If the actor doesn't have a NetID, we have to instruct the clients differently how to play the sound.