]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/command/getreplies.qc
Merge branch 'DefaultUser/mapinfo_without_weapons_in_ca' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / getreplies.qc
index cfcadf4456cb9652ea9239e4fdf4ca532229dee2..b768ccb7e8510355d99068660661fd901dd96054 100644 (file)
@@ -1,4 +1,8 @@
 #include "getreplies.qh"
+
+#include <server/defs.qh>
+#include <server/miscfunctions.qh>
+
 #include <common/command/_mod.qh>
 #include "getreplies.qh"
 
@@ -32,8 +36,9 @@ string getrecords(int page)  // 50 records per page
 
        MapInfo_ClearTemps();
 
-       if (s == "" && page == 0) return "No records are available on this server.\n";
-       else return s;
+       if (s == "" && page == 0)
+               return "No records are available on this server for the current game mode.\n";
+       return s;
 }
 
 string getrankings()