fBaseXtensions.Behaviors.TownPortalBehavior.TPActionIsValid C# (CSharp) Method

TPActionIsValid() static private method

static private TPActionIsValid ( ) : bool
return bool
        internal static bool TPActionIsValid()
        {
            try
            {
                if (FunkyGame.GameIsInvalid || ZetaDia.Me.IsDead)
                    return false;

                return true;
            }
            catch (Exception)
            {
                return false;
            }
        }