37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
namespace Server.Engines.Harvest
|
|
{
|
|
public class HarvestSoundTimer : Timer
|
|
{
|
|
private readonly HarvestDefinition m_Definition;
|
|
private readonly Mobile m_From;
|
|
private readonly bool m_Last;
|
|
private readonly object m_Locked;
|
|
private readonly HarvestSystem m_System;
|
|
private readonly object m_ToHarvest;
|
|
private readonly Item m_Tool;
|
|
|
|
public HarvestSoundTimer(
|
|
Mobile from, Item tool, HarvestSystem system, HarvestDefinition def, object toHarvest,
|
|
object locked, bool last
|
|
) : base(def.EffectSoundDelay)
|
|
{
|
|
m_From = from;
|
|
m_Tool = tool;
|
|
m_System = system;
|
|
m_Definition = def;
|
|
m_ToHarvest = toHarvest;
|
|
m_Locked = locked;
|
|
m_Last = last;
|
|
}
|
|
|
|
protected override void OnTick()
|
|
{
|
|
m_System.DoHarvestingSound(m_From, m_Tool, m_Definition, m_ToHarvest);
|
|
|
|
if (m_Last)
|
|
{
|
|
m_System.FinishHarvesting(m_From, m_Tool, m_Definition, m_ToHarvest, m_Locked);
|
|
}
|
|
}
|
|
}
|
|
}
|