ed83c4c011
fix bug with unbanned players still showing as banned via lock icon move player based stuff into client class finally renamed Player to EFClient via partial class don't try to run this build because it's in between stages
21 lines
451 B
C#
21 lines
451 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using SharedLibraryCore.Database.Models;
|
|
using SharedLibraryCore.Objects;
|
|
|
|
namespace IW4MAdmin.Plugins.ProfanityDeterment
|
|
{
|
|
class Tracking
|
|
{
|
|
public EFClient Client { get; private set; }
|
|
public int Infringements { get; set; }
|
|
|
|
public Tracking(EFClient client)
|
|
{
|
|
Client = client;
|
|
Infringements = 0;
|
|
}
|
|
}
|
|
}
|