From 9157243b21b54177ca15f6f5e4fb87c874247944 Mon Sep 17 00:00:00 2001 From: ChocoTaco Date: Fri, 11 Oct 2019 02:39:05 -0400 Subject: [PATCH] DM Observer Bug --- Classic/scripts/autoexec/zDarkTigerStats.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Classic/scripts/autoexec/zDarkTigerStats.cs b/Classic/scripts/autoexec/zDarkTigerStats.cs index ce55f1d..3e0acf9 100644 --- a/Classic/scripts/autoexec/zDarkTigerStats.cs +++ b/Classic/scripts/autoexec/zDarkTigerStats.cs @@ -1742,15 +1742,15 @@ package dtStats{ else { if(%client.isAdmin || %client.isSuperAdmin || !$dtStats::viewSelf){ - messageClient( %client, 'SetLineHud', "", %tag, %index, '%5\t+ %1%2%3%4%7', + messageClient( %client, 'SetLineHud', "", %tag, %index, '%5\t+ %1%2%3%4%7', %cl.name, %clScore, %clKills, %clDeaths, %clStyle, %cl, %clBonus); } else if(%client.name $= %cl.name){ - messageClient( %client, 'SetLineHud', "", %tag, %index, '%5\t+ %1%2%3%4%7', + messageClient( %client, 'SetLineHud', "", %tag, %index, '%5\t+ %1%2%3%4%7', %cl.name, %clScore, %clKills, %clDeaths, %clStyle, %cl, %clBonus); } else{ - messageClient( %client, 'SetLineHud', "", %tag, %index, '%5\t%1%2%3%4%7', + messageClient( %client, 'SetLineHud', "", %tag, %index, '%5\t %1%2%3%4%7', %cl.name, %clScore, %clKills, %clDeaths, %clStyle, %cl, %clBonus); } } @@ -1780,15 +1780,15 @@ package dtStats{ %obsTime = getSimTime() - %cl.observerStartTime; %obsTimeStr = %game.formatTime(%obsTime, false); if(%client.isAdmin || %client.isSuperAdmin || !$dtStats::viewSelf){ - messageClient( %client, 'SetLineHud', "", %tag, %index, '\t+%1%2', + messageClient( %client, 'SetLineHud', "", %tag, %index, '\t+ %1%2', %cl.name, %obsTimeStr ); } else if(%client.name $= %cl.name){ - messageClient( %client, 'SetLineHud', "", %tag, %index, '\t+%1%2', + messageClient( %client, 'SetLineHud', "", %tag, %index, '\t+ %1%2', %cl.name, %obsTimeStr ); } else{ - messageClient( %client, 'SetLineHud', "", %tag, %index, '\t%1%2', + messageClient( %client, 'SetLineHud', "", %tag, %index, '\t %1%2', %cl.name, %obsTimeStr ); } %index++;