]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/w_laser.qc
fix ordering of kill messages, add kill messages for melee wpns ;)
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / w_laser.qc
index 81a5527ac57f8c557e7aa7efc30463f6a4b8800a..280e42cf33f0abb11b3f788b9fe04f9ba709ee58 100644 (file)
@@ -280,7 +280,10 @@ float w_laser(float req)
                w_deathtypestring = "%s lasered themself to hell";
        else if (req == WR_KILLMESSAGE)
        {
-               w_deathtypestring = "%s was lasered to death by %s"; // unchecked: SPLASH
+               if(w_deathtype & HITTYPE_SECONDARY)
+                       w_deathtypestring = "%s was cut in half by %s's gauntlet"; // unchecked: SPLASH
+               else
+                       w_deathtypestring = "%s was lasered to death by %s"; // unchecked: SPLASH
        }
        return TRUE;
 }