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

            Fellowship.QuitFellowship(this, disband);

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