Use consistent spelling of 'interrupt[a|i]ble'

This commit is contained in:
Oliver Brakmann
2016-11-13 15:46:29 +01:00
parent 2c66ee8c13
commit fd22b19183
2 changed files with 6 additions and 6 deletions

View File

@@ -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;