mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-10 02:31:03 +00:00
[Strings] Refactor Strings Usage (#2305)
* Initial commit checkpoint * More functions converted * Commify * More functions * Fin * Sort declarations * Split functions between files * Bots * Update strings.h * Split * Revert find replaces * Repository template * Money * Misc function * Update CMakeLists.txt * Saylink * Update strings.cpp * Swap Strings::Saylink for Saylink::Create since saylink is coupled to zone database * API casings
This commit is contained in:
+2
-2
@@ -18,7 +18,7 @@ Copyright (C) 2001-2014 EQEMu Development Team (http://eqemulator.net)
|
||||
|
||||
#include "../common/global_define.h"
|
||||
#include "../common/servertalk.h"
|
||||
#include "../common/string_util.h"
|
||||
#include "../common/strings.h"
|
||||
#include "queryserv.h"
|
||||
#include "worldserver.h"
|
||||
|
||||
@@ -49,6 +49,6 @@ void QueryServ::PlayerLogEvent(int Event_Type, int Character_ID, std::string Eve
|
||||
"INSERT INTO `qs_player_events` (event, char_id, event_desc, time) VALUES (%i, %i, '%s', UNIX_TIMESTAMP(now()))",
|
||||
Event_Type,
|
||||
Character_ID,
|
||||
EscapeString(Event_Desc).c_str());
|
||||
Strings::Escape(Event_Desc).c_str());
|
||||
SendQuery(query);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user