server-master/srcs/_plugins/WingsEmu.Plugins.BasicImplementation/CharacterLifetimeStats/TotalRaidsWonEventHandler.cs
2026-02-10 18:21:30 +01:00

16 lines
No EOL
498 B
C#

using System.Threading;
using System.Threading.Tasks;
using PhoenixLib.Events;
using WingsEmu.Game.Networking;
using WingsEmu.Game.Raids.Events;
namespace WingsEmu.Plugins.BasicImplementations.CharacterLifetimeStats;
public class TotalRaidsWonEventHandler : IAsyncEventProcessor<RaidWonEvent>
{
public async Task HandleAsync(RaidWonEvent e, CancellationToken cancellation)
{
IClientSession session = e.Sender;
session.PlayerEntity.LifetimeStats.TotalRaidsWon++;
}
}