[PATCH] Add mcache command to QW

Add the mcache command to the QW client as well, since the Mod_Print function
is already there. Makes more sense to place this command in a client file,
since the models are logically cached client side, so cl_main.c will do for
now.

diff -urN -X exclude a/NQ/cl_main.c head/NQ/cl_main.c
--- a/NQ/cl_main.c	2006-02-18 13:21:44.000000000 +1030
+++ head/NQ/cl_main.c	2006-06-10 21:22:12.000000000 +0930
@@ -763,4 +763,6 @@
     Cmd_SetCompletion("playdemo", CL_Demo_Arg_f);
     Cmd_AddCommand("timedemo", CL_TimeDemo_f);
     Cmd_SetCompletion("timedemo", CL_Demo_Arg_f);
+
+    Cmd_AddCommand("mcache", Mod_Print);
 }
diff -urN -X exclude a/NQ/host_cmd.c head/NQ/host_cmd.c
--- a/NQ/host_cmd.c	2006-03-12 06:15:47.000000000 +1030
+++ head/NQ/host_cmd.c	2006-06-10 21:15:04.000000000 +0930
@@ -1594,6 +1594,4 @@
     Cmd_AddCommand("viewframe", Host_Viewframe_f);
     Cmd_AddCommand("viewnext", Host_Viewnext_f);
     Cmd_AddCommand("viewprev", Host_Viewprev_f);
-
-    Cmd_AddCommand("mcache", Mod_Print);
 }
diff -urN -X exclude a/QW/client/cl_main.c head/QW/client/cl_main.c
--- a/QW/client/cl_main.c	2006-05-20 16:25:44.000000000 +0930
+++ head/QW/client/cl_main.c	2006-06-10 21:22:20.000000000 +0930
@@ -1181,6 +1181,8 @@
     Cmd_AddCommand("nextul", CL_NextUpload);
     Cmd_AddCommand("stopul", CL_StopUpload);
 
+    Cmd_AddCommand("mcache", Mod_Print);
+
 //
 // forward to server commands
 //
