Added DenyLoadMod

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@485 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2005-09-12 03:51:37 +00:00
parent da683da5b0
commit ed602fd6fc

View File

@@ -342,12 +342,13 @@ bool CUser::WriteConfig(CFile& File) {
PrintLine(File, "VHost", GetVHost());
PrintLine(File, "AwaySuffix", GetAwaySuffix());
PrintLine(File, "StatusPrefix", GetStatusPrefix());
PrintLine(File, "KeepNick", CString((GetKeepNick()) ? "true" : "false"));
PrintLine(File, "Buffer", CString::ToString(GetBufferCount()));
PrintLine(File, "KeepBuffer", CString((KeepBuffer()) ? "true" : "false"));
PrintLine(File, "ChanModes", GetDefaultChanModes());
PrintLine(File, "Buffer", CString::ToString(GetBufferCount()));
PrintLine(File, "KeepNick", CString((GetKeepNick()) ? "true" : "false"));
PrintLine(File, "KeepBuffer", CString((KeepBuffer()) ? "true" : "false"));
PrintLine(File, "BounceDCCs", CString((BounceDCCs()) ? "true" : "false"));
PrintLine(File, "AutoCycle", CString((AutoCycle()) ? "true" : "false"));
PrintLine(File, "DenyLoadMod", CString((DenyLoadMod()) ? "true" : "false"));
PrintLine(File, "DCCLookupMethod", CString((UseClientIP()) ? "client" : "default"));
File.Write("\r\n");