Use consistent spelling of 'interrupt[a|i]ble'
This commit is contained in:
@@ -16,10 +16,10 @@ namespace OpenRA.Activities
|
||||
public class CallFunc : Activity
|
||||
{
|
||||
public CallFunc(Action a) { this.a = a; }
|
||||
public CallFunc(Action a, bool interruptable)
|
||||
public CallFunc(Action a, bool interruptible)
|
||||
{
|
||||
this.a = a;
|
||||
IsInterruptible = interruptable;
|
||||
IsInterruptible = interruptible;
|
||||
}
|
||||
|
||||
Action a;
|
||||
|
||||
@@ -19,10 +19,10 @@ namespace OpenRA.Mods.Common.Activities
|
||||
int remainingTicks;
|
||||
|
||||
public Wait(int period) { remainingTicks = period; }
|
||||
public Wait(int period, bool interruptable)
|
||||
public Wait(int period, bool interruptible)
|
||||
{
|
||||
remainingTicks = period;
|
||||
IsInterruptible = interruptable;
|
||||
IsInterruptible = interruptible;
|
||||
}
|
||||
|
||||
public override Activity Tick(Actor self)
|
||||
@@ -45,10 +45,10 @@ namespace OpenRA.Mods.Common.Activities
|
||||
Func<bool> f;
|
||||
|
||||
public WaitFor(Func<bool> f) { this.f = f; }
|
||||
public WaitFor(Func<bool> f, bool interruptable)
|
||||
public WaitFor(Func<bool> f, bool interruptible)
|
||||
{
|
||||
this.f = f;
|
||||
IsInterruptible = interruptable;
|
||||
IsInterruptible = interruptible;
|
||||
}
|
||||
|
||||
public override Activity Tick(Actor self)
|
||||
|
||||
Reference in New Issue
Block a user