Esempio n. 1
0
 protected override void OnTick()
 {
     if (m_chest == null || m_chest.Deleted)
     {
         Stop();
         return;
     }
     if (m_chest.RootParent is Mobile)
     {
         ((Mobile)m_chest.RootParent).Emote("You feel a jolt as the chest disappears.");
     }
     m_chest.Delete();
 }