063449d9c4
added reset stats commands broadcast for some commands
37 lines
910 B
C#
37 lines
910 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SharedLibrary;
|
|
|
|
namespace IW4MAdmin
|
|
{
|
|
class PenaltyList : SharedLibrary.Interfaces.IPenaltyList
|
|
{
|
|
public PenaltyList()
|
|
{
|
|
}
|
|
|
|
public void AddPenalty(Penalty P)
|
|
{
|
|
Manager.GetInstance().GetClientDatabase().AddBan(P);
|
|
}
|
|
|
|
public void RemovePenalty(Penalty P)
|
|
{
|
|
Manager.GetInstance().GetClientDatabase().RemoveBan(P.OffenderID);
|
|
}
|
|
|
|
public List<Penalty> FindPenalties(Player P)
|
|
{
|
|
return Manager.GetInstance().GetClientDatabase().GetClientPenalties(P);
|
|
}
|
|
|
|
public List<Penalty> AsChronoList(int offset, int count)
|
|
{
|
|
return Manager.GetInstance().GetClientDatabase().GetPenaltiesChronologically(offset, count);
|
|
}
|
|
}
|
|
}
|