Ejemplo n.º 1
0
 public void FellowshipQuit(bool disband)
 {
     if (Fellowship != null)
     {
         Fellowship.QuitFellowship(this, disband);
     }
 }
Ejemplo n.º 2
0
        public void FellowshipQuit(bool disband)
        {
            if (Fellowship == null)
            {
                return;
            }

            Fellowship.QuitFellowship(this, disband);

            Fellowship = null;
        }
Ejemplo n.º 3
0
 public void FellowshipQuit(bool disband)
 {
     Fellowship.QuitFellowship(this, disband);
     Fellowship = null;
 }