]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/counting.qh
Remove even more fteqcc junk
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / counting.qh
index 1413a80902d1fb338abed1881ea942c2929bf608..2559bf3acd9ff8e822163d961f61c3e8fbd81d3b 100644 (file)
@@ -192,24 +192,6 @@ string process_time(float outputtype, float seconds)
                                        ((output != "") ? sprintf(", %s", output) : ""));
                        }
 
-                       return output;
-               }
-               case 3:
-               {
-                       string output = "";
-
-                       output = count_hours(tmp_hours);
-
-                       if(tmp_weeks) { tmp_days += (tmp_weeks * 7); }
-                       if(tmp_years) { tmp_days += (tmp_years * 365); }
-                       if(tmp_days)
-                       {
-                               output = sprintf(
-                                       "%s%s",
-                                       count_days(tmp_days),
-                                       ((output != "") ? sprintf(", %s", output) : ""));
-                       }
-
                        return output;
                }
        }