Terraria.Player.TryPortalJumping C# (CSharp) Метод

TryPortalJumping() публичный Метод

public TryPortalJumping ( ) : void
Результат void
        public void TryPortalJumping()
        {
            if (this.mount.Active || this.dead)
                return;
            PortalHelper.TryGoingThroughPortals((Entity)this);
        }
Player