]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
More LegendaryGuard/ttt code fix
authorLegendaryGuard <rootuser999@gmail.com>
Sun, 18 Apr 2021 07:11:01 +0000 (09:11 +0200)
committerLegendaryGuard <rootuser999@gmail.com>
Sun, 18 Apr 2021 07:11:01 +0000 (09:11 +0200)
qcsrc/common/gamemodes/gamemode/mmm/sv_mmm.qc

index e232c7fcd6e8baae03515c15493f265c53d58ab9..6061272b5db68e2b6cb9b057e90f30a876cfc996 100644 (file)
@@ -648,7 +648,7 @@ MUTATOR_HOOKFUNCTION(mmm, Damage_Calculate)
                        {
                                //try to add centerprint message for chat privately if possible
                                corpsemessagestrcat = strcat("^5DEAD PLAYER DETAILS^7: \n^3Name:^7 ", target.netname, "\n^3Role: ^2Civilian", "\n", killedbyphrase, "\n", wepkilledphrase);
-                               corpsemsginfo = strcat("^5DEAD PLAYER DETAILS^7: ^3Name:^7 ", target.netname, "   ^3Role: ^2Civilian", "   ", killedbyphrase, "   ", wepkilledphrase);
+                               corpsemsginfo = strcat("^5DEAD PLAYER DETAILS^7: ^3Name:^7 ", target.netname, "^7; ^3Role: ^2Civilian", "^7; ", killedbyphrase, "^7; ", wepkilledphrase);
                                //centerprint(attacker, strcat(BOLD_OPERATOR, corpsemessagestrcat));
                                Send_Notification(NOTIF_ONE_ONLY, attacker, MSG_CENTER, CENTER_MMM_CORPSEDETECTION, corpsemessagestrcat);
                                Send_Notification(NOTIF_ONE_ONLY, attacker, MSG_INFO, INFO_MMM_CORPSEDETECTION, corpsemsginfo);
@@ -656,7 +656,7 @@ MUTATOR_HOOKFUNCTION(mmm, Damage_Calculate)
                        else if (target.mmm_status == MMM_STATUS_MURDERER)
                        {
                                corpsemessagestrcat = strcat("^5DEAD PLAYER DETAILS^7: \n^3Name:^7 ", target.netname, "\n^3Role: ^1Murderer", "\n", killedbyphrase, "\n", wepkilledphrase);
-                               corpsemsginfo = strcat("^5DEAD PLAYER DETAILS^7: ^3Name:^7 ", target.netname, "   ^3Role: ^1Murderer", "   ", killedbyphrase, "   ", wepkilledphrase);
+                               corpsemsginfo = strcat("^5DEAD PLAYER DETAILS^7: ^3Name:^7 ", target.netname, "^7; ^3Role: ^1Murderer", "^7; ", killedbyphrase, "^7; ", wepkilledphrase);
                                //centerprint(attacker, strcat(BOLD_OPERATOR, corpsemessagestrcat));
                                Send_Notification(NOTIF_ONE_ONLY, attacker, MSG_CENTER, CENTER_MMM_CORPSEDETECTION, corpsemessagestrcat);
                                Send_Notification(NOTIF_ONE_ONLY, attacker, MSG_INFO, INFO_MMM_CORPSEDETECTION, corpsemsginfo);
@@ -664,7 +664,7 @@ MUTATOR_HOOKFUNCTION(mmm, Damage_Calculate)
                        else if (target.mmm_status == MMM_STATUS_SLEUTH)
                        {
                                corpsemessagestrcat = strcat("^5DEAD PLAYER DETAILS^7: \n^3Name:^7 ", target.netname, "\n^3Role: ^4Sleuth", "\n", killedbyphrase, "\n", wepkilledphrase);
-                               corpsemsginfo = strcat("^5DEAD PLAYER DETAILS^7: ^3Name:^7 ", target.netname, "   ^3Role: ^4Sleuth", "   ", killedbyphrase, "   ", wepkilledphrase);
+                               corpsemsginfo = strcat("^5DEAD PLAYER DETAILS^7: ^3Name:^7 ", target.netname, "^7; ^3Role: ^4Sleuth", "^7; ", killedbyphrase, "^7; ", wepkilledphrase);
                                //centerprint(attacker, strcat(BOLD_OPERATOR, corpsemessagestrcat));
                                Send_Notification(NOTIF_ONE_ONLY, attacker, MSG_CENTER, CENTER_MMM_CORPSEDETECTION, corpsemessagestrcat);
                                Send_Notification(NOTIF_ONE_ONLY, attacker, MSG_INFO, INFO_MMM_CORPSEDETECTION, corpsemsginfo);