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

14 lines
No EOL
427 B
C#

using Plugin.PlayerLogs.Core;
using Plugin.PlayerLogs.Messages.Shop;
using WingsEmu.Game.Shops.Event;
namespace Plugin.PlayerLogs.Enrichers.Shop
{
public class LogShopSkillSoldMessageEnricher : ILogMessageEnricher<ShopSkillSoldEvent, LogShopSkillSoldMessage>
{
public void Enrich(LogShopSkillSoldMessage message, ShopSkillSoldEvent e)
{
message.SkillVnum = e.SkillVnum;
}
}
}