Beispiel #1
0
 protected override void TraitDisabled(Actor self)
 {
     if (attack != null && attack.IsAiming)
     {
         attack.OnStopOrder(self);
     }
 }
Beispiel #2
0
 public void StopAiming(Actor self)
 {
     if (attack != null && attack.IsAiming)
     {
         attack.OnStopOrder(self);
     }
 }