Skip to content

OnPhoneDialFailed

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnPhoneDialFailed( PhoneController instance, Telephone.DialFailReason reason, BasePlayer currentPlayer )
{
    Puts( "OnPhoneDialFailed works!" );
}

Location

  • PhoneController::OnDialFailed(Telephone.DialFailReason reason)
csharp
//---
		}
		if (IsInvoking(TimeOutDialing))
		{
			CancelInvoke(TimeOutDialing);
		}
		Interface.CallHook("OnPhoneDialFailed", this, reason, currentPlayer);
	}
}

Released under the MIT License.