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