mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-13 02:38:45 +00:00
normalize includes: common
This commit is contained in:
+19
-21
@@ -17,29 +17,27 @@
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "../global_define.h"
|
||||
#include "../eqemu_config.h"
|
||||
#include "../eqemu_logsys.h"
|
||||
#include "uf.h"
|
||||
#include "../opcodemgr.h"
|
||||
|
||||
#include "../eq_stream_ident.h"
|
||||
#include "../crc32.h"
|
||||
|
||||
#include "../eq_packet_structs.h"
|
||||
#include "../misc_functions.h"
|
||||
#include "../strings.h"
|
||||
#include "../item_instance.h"
|
||||
#include "uf_structs.h"
|
||||
#include "../rulesys.h"
|
||||
#include "../path_manager.h"
|
||||
#include "../classes.h"
|
||||
#include "../races.h"
|
||||
#include "../raid.h"
|
||||
#include "../guilds.h"
|
||||
//#include "../repositories/trader_repository.h"
|
||||
#include <cereal/types/vector.hpp>
|
||||
|
||||
#include "common/classes.h"
|
||||
#include "common/crc32.h"
|
||||
#include "common/eq_packet_structs.h"
|
||||
#include "common/eq_stream_ident.h"
|
||||
#include "common/eqemu_config.h"
|
||||
#include "common/eqemu_logsys.h"
|
||||
#include "common/global_define.h"
|
||||
#include "common/guilds.h"
|
||||
#include "common/item_instance.h"
|
||||
#include "common/misc_functions.h"
|
||||
#include "common/opcodemgr.h"
|
||||
#include "common/path_manager.h"
|
||||
#include "common/races.h"
|
||||
#include "common/raid.h"
|
||||
#include "common/rulesys.h"
|
||||
#include "common/strings.h"
|
||||
|
||||
#include "cereal/types/vector.hpp"
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
||||
@@ -2716,7 +2714,7 @@ namespace UF
|
||||
|
||||
buf.WriteString(new_message);
|
||||
|
||||
auto outapp = new EQApplicationPacket(OP_SpecialMesg, buf);
|
||||
auto outapp = new EQApplicationPacket(OP_SpecialMesg, std::move(buf));
|
||||
|
||||
dest->FastQueuePacket(&outapp, ack_req);
|
||||
delete in;
|
||||
|
||||
Reference in New Issue
Block a user