Remove Client::LogSQL

This commit is contained in:
Akkadius 2015-01-24 03:51:19 -06:00
parent ce161c2583
commit d5714cdcb0
2 changed files with 0 additions and 12 deletions

View File

@ -3504,17 +3504,6 @@ void Client::ChangeSQLLog(const char *file) {
} }
} }
void Client::LogSQL(const char *fmt, ...) {
if(SQL_log == nullptr)
return;
va_list argptr;
va_start(argptr, fmt);
vfprintf(SQL_log, fmt, argptr );
fputc('\n', SQL_log);
va_end(argptr);
}
void Client::GetGroupAAs(GroupLeadershipAA_Struct *into) const { void Client::GetGroupAAs(GroupLeadershipAA_Struct *into) const {
memcpy(into, &m_pp.leader_abilities.group, sizeof(GroupLeadershipAA_Struct)); memcpy(into, &m_pp.leader_abilities.group, sizeof(GroupLeadershipAA_Struct));
} }

View File

@ -915,7 +915,6 @@ public:
void LoadZoneFlags(); void LoadZoneFlags();
void ChangeSQLLog(const char *file); void ChangeSQLLog(const char *file);
void LogSQL(const char *fmt, ...);
bool CanFish(); bool CanFish();
void GoFish(); void GoFish();
void ForageItem(bool guarantee = false); void ForageItem(bool guarantee = false);