mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 20:58:22 +00:00
8 lines
322 B
C++
8 lines
322 B
C++
|
#include "MySQLDatabase.h"
|
||
|
|
||
|
void MySQLDatabase::InsertCheatDetection(const IPlayerCheatDetections::Info& info) {
|
||
|
ExecuteInsert(
|
||
|
"INSERT INTO player_cheat_detections (account_id, name, violation_msg, violation_system_address) VALUES (?, ?, ?, ?)",
|
||
|
info.userId, info.username, info.extraMessage, info.systemAddress);
|
||
|
}
|