The name 'TC' does not exist in the current contextSolved

error: https://hizliresim.com/TfQWp0

Plugin:

using System;
using Oxide.Core.Libraries.Covalence;
using UnityEngine;
namespace Oxide.Plugins
{
    [Info("TC Broken", "Kurbandark", "1.0.0")]
    [Description("For Rust Türkiye Tournament")]
    class TcBrokenG: CovalencePlugin
    {
        private void OnEntityDeath(BuildingPrivlidge cupboard, HitInfo info)
        {
            var owner = covalence.Players.FindPlayerById(cupboard.OwnerID.ToString()).Name;
			var attacker = info.InitiatorPlayer.displayName;
         
            if (owner != null && attacker != null)
			if (Entity.ShortPrefabName.Contains("cupboard.tool"))
            {
				covalence.Server.Broadcast(attacker + " Adlı Oyuncu " + owner + " Adlı Oyuncunun İnşaat Dolabını Yerle Bir Etti ");
				LogToFile("filename", $"[{TC.ServerPosition}][{DateTime.Now}] {attacker} Adlı Oyuncu {owner} Adlı Oyuncunun İnşaat Dolabını Yerle Bir Etti", this);                
            }
        }
    }
}​
There is no TC variable (TC.ServerPosition).
Locked automatically