diff --git a/src/command.c b/src/command.c
index 53d54dbdddff958d732f7935848b67fc85673b13..3f5f28264d6ffd639b786f8101b3d183581c09c3 100644
--- a/src/command.c
+++ b/src/command.c
@@ -2490,9 +2490,7 @@ static boolean CV_FilterVarByVersion(consvar_t *v, const char *valstr)
 			(!stricmp(v->name, "playersforexit") && atoi(valstr) == 4) || // 4 = all
 			(!stricmp(v->name, "advancemap") && atoi(valstr) == 1) || // 1 = next
 			(!stricmp(v->name, "cam_speed") && !stricmp(valstr, "0.3")) ||
-			(!stricmp(v->name, "cam_orbit") && atoi(valstr) == 0) || // 0 = off
 			(!stricmp(v->name, "cam2_speed") && !stricmp(valstr, "0.3")) ||
-			(!stricmp(v->name, "cam2_orbit") && atoi(valstr) == 0) || // 0 = off
 			(!stricmp(v->name, "timerres") && atoi(valstr) == 0) || // 0 = classic
 			(!stricmp(v->name, "gr_modelinterpolation") && atoi(valstr) == 1) // 1 = sometimes
 		)