コード例 #1
0
ファイル: MindRot.cs プロジェクト: StoryOfTheBard/UOLegends
 protected override void OnTarget(Mobile from, object o)
 {
     if (o is Mobile)
     {
         m_Owner.Target((Mobile)o);
     }
 }
コード例 #2
0
ファイル: MindRot.cs プロジェクト: phpjunkie420/RunUO
 protected override void OnTarget(Mobile from, object o)
 {
     if (o is Mobile)
     {
         m_Owner.Target((Mobile)o);
     }
     else
     {
         from.SendLocalizedMessage(1060508);                       // You can't curse that.
     }
 }