diff --git a/gamemodes/irresistible/cnr/features/damage_feed.pwn b/gamemodes/irresistible/cnr/features/damage_feed.pwn index dbb4cd7..b820593 100644 --- a/gamemodes/irresistible/cnr/features/damage_feed.pwn +++ b/gamemodes/irresistible/cnr/features/damage_feed.pwn @@ -546,6 +546,9 @@ CMD:sync( playerid, params[ ] ) if ( GetPlayerWeapon( playerid ) == WEAPON_SNIPER ) return SendError( playerid, "You cannot synchronize yourself holding a sniper." ); + if ( IsPlayerPassive( playerid ) ) + return SendError( playerid, "You cannot use this feature while in passive mode." ); + new curr_server_time = GetServerTime( );