From 85bbcb3c4f509f981b0cc45f6873f07d3f1ce5f4 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 21 Mar 2005 09:50:06 +0000 Subject: [PATCH] ApplyToAllPlayers applies to inactive players; Apply should, too --- stepmania/src/GameCommand.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/stepmania/src/GameCommand.cpp b/stepmania/src/GameCommand.cpp index 2a3b668851..e2709726f0 100644 --- a/stepmania/src/GameCommand.cpp +++ b/stepmania/src/GameCommand.cpp @@ -560,9 +560,6 @@ void GameCommand::ApplyToAllPlayers() const void GameCommand::Apply( PlayerNumber pn ) const { - if( !GAMESTATE->IsHumanPlayer(pn) ) - return; - vector vpns; vpns.push_back( pn ); Apply( vpns );