server-master/srcs/_plugins/Plugin.PlayerLogs/Enrichers/Shop/LogShopSkillBoughtMessageEnricher.cs
2026-02-10 18:21:30 +01:00

14 lines
No EOL
449 B
C#

using Plugin.PlayerLogs.Core;
using Plugin.PlayerLogs.Messages.Shop;
using WingsEmu.Game.Shops.Event;
namespace Plugin.PlayerLogs.Enrichers.Shop
{
public class LogShopSkillBoughtMessageEnricher : ILogMessageEnricher<ShopSkillBoughtEvent, LogShopSkillBoughtMessage>
{
public void Enrich(LogShopSkillBoughtMessage boughtMessage, ShopSkillBoughtEvent e)
{
boughtMessage.SkillVnum = e.SkillVnum;
}
}
}