]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/deathtypes.qh
Get rid of if not, step 1.
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / deathtypes.qh
index cc7154d4b6a8713de9236413ecdb01adcf2d0db1..4f96f7500eb96fe1faa8a584bdfdbd34de932cf3 100644 (file)
@@ -96,7 +96,7 @@ string Deathtype_Name(float deathtype)
        if(DEATH_ISSPECIAL(deathtype))
        {
                entity deathent = deathtypes[(deathtype - DT_FIRST)];
-               if not(deathent) { backtrace("Deathtype_Name: Could not find deathtype entity!\n"); return ""; }
+               if (!deathent) { backtrace("Deathtype_Name: Could not find deathtype entity!\n"); return ""; }
                return deathent.nent_name;
        }
        else { return ftos(deathtype); }