mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 13:16:39 +00:00
Remove unnecessary packet sending.
This commit is contained in:
+19
-20
@@ -226,26 +226,25 @@
|
|||||||
#define ServerOP_ReloadAAData 0x4100
|
#define ServerOP_ReloadAAData 0x4100
|
||||||
#define ServerOP_ReloadAlternateCurrencies 0x4101
|
#define ServerOP_ReloadAlternateCurrencies 0x4101
|
||||||
#define ServerOP_ReloadBlockedSpells 0x4102
|
#define ServerOP_ReloadBlockedSpells 0x4102
|
||||||
#define ServerOP_ReloadCommands 0x4103
|
#define ServerOP_ReloadContentFlags 0x4103
|
||||||
#define ServerOP_ReloadContentFlags 0x4104
|
#define ServerOP_ReloadDoors 0x4104
|
||||||
#define ServerOP_ReloadDoors 0x4105
|
#define ServerOP_ReloadGroundSpawns 0x4105
|
||||||
#define ServerOP_ReloadGroundSpawns 0x4106
|
#define ServerOP_ReloadLevelEXPMods 0x4106
|
||||||
#define ServerOP_ReloadLevelEXPMods 0x4107
|
#define ServerOP_ReloadLogs 0x4107
|
||||||
#define ServerOP_ReloadLogs 0x4108
|
#define ServerOP_ReloadMerchants 0x4108
|
||||||
#define ServerOP_ReloadMerchants 0x4109
|
#define ServerOP_ReloadNPCEmotes 0x4109
|
||||||
#define ServerOP_ReloadNPCEmotes 0x4110
|
#define ServerOP_ReloadObjects 0x4110
|
||||||
#define ServerOP_ReloadObjects 0x4111
|
#define ServerOP_ReloadPerlExportSettings 0x4111
|
||||||
#define ServerOP_ReloadPerlExportSettings 0x4112
|
#define ServerOP_ReloadRules 0x4112
|
||||||
#define ServerOP_ReloadRules 0x4113
|
#define ServerOP_ReloadStaticZoneData 0x4113
|
||||||
#define ServerOP_ReloadStaticZoneData 0x4114
|
#define ServerOP_ReloadTasks 0x4114
|
||||||
#define ServerOP_ReloadTasks 0x4115
|
#define ServerOP_ReloadTitles 0x4115
|
||||||
#define ServerOP_ReloadTitles 0x4116
|
#define ServerOP_ReloadTraps 0x4116
|
||||||
#define ServerOP_ReloadTraps 0x4117
|
#define ServerOP_ReloadVariables 0x4117
|
||||||
#define ServerOP_ReloadVariables 0x4118
|
#define ServerOP_ReloadVeteranRewards 0x4118
|
||||||
#define ServerOP_ReloadVeteranRewards 0x4119
|
#define ServerOP_ReloadWorld 0x4119
|
||||||
#define ServerOP_ReloadWorld 0x4120
|
#define ServerOP_ReloadZonePoints 0x4120
|
||||||
#define ServerOP_ReloadZonePoints 0x4121
|
#define ServerOP_ReloadDzTemplates 0x4121
|
||||||
#define ServerOP_ReloadDzTemplates 0x4122
|
|
||||||
|
|
||||||
#define ServerOP_CZDialogueWindow 0x4500
|
#define ServerOP_CZDialogueWindow 0x4500
|
||||||
#define ServerOP_CZLDoNUpdate 0x4501
|
#define ServerOP_CZLDoNUpdate 0x4501
|
||||||
|
|||||||
@@ -1307,7 +1307,6 @@ void ZoneServer::HandleMessage(uint16 opcode, const EQ::Net::Packet &p) {
|
|||||||
case ServerOP_ReloadAAData:
|
case ServerOP_ReloadAAData:
|
||||||
case ServerOP_ReloadAlternateCurrencies:
|
case ServerOP_ReloadAlternateCurrencies:
|
||||||
case ServerOP_ReloadBlockedSpells:
|
case ServerOP_ReloadBlockedSpells:
|
||||||
case ServerOP_ReloadCommands:
|
|
||||||
case ServerOP_ReloadDoors:
|
case ServerOP_ReloadDoors:
|
||||||
case ServerOP_ReloadGroundSpawns:
|
case ServerOP_ReloadGroundSpawns:
|
||||||
case ServerOP_ReloadLevelEXPMods:
|
case ServerOP_ReloadLevelEXPMods:
|
||||||
|
|||||||
@@ -77,8 +77,9 @@ void command_reload(Client *c, const Seperator *sep)
|
|||||||
c->Message(Chat::White, "Attempting to reload Blocked Spells globally.");
|
c->Message(Chat::White, "Attempting to reload Blocked Spells globally.");
|
||||||
pack = new ServerPacket(ServerOP_ReloadBlockedSpells, 0);
|
pack = new ServerPacket(ServerOP_ReloadBlockedSpells, 0);
|
||||||
} else if (is_commands) {
|
} else if (is_commands) {
|
||||||
c->Message(Chat::White, "Attempting to reload Commands globally.");
|
c->Message(Chat::White, "Attempting to reload Commands.");
|
||||||
pack = new ServerPacket(ServerOP_ReloadCommands, 0);
|
command_init();
|
||||||
|
return;
|
||||||
} else if (is_content_flags) {
|
} else if (is_content_flags) {
|
||||||
c->Message(Chat::White, "Attempting to reload Content Flags globally.");
|
c->Message(Chat::White, "Attempting to reload Content Flags globally.");
|
||||||
pack = new ServerPacket(ServerOP_ReloadContentFlags, 0);
|
pack = new ServerPacket(ServerOP_ReloadContentFlags, 0);
|
||||||
|
|||||||
@@ -1916,12 +1916,6 @@ void WorldServer::HandleMessage(uint16 opcode, const EQ::Net::Packet &p)
|
|||||||
zone->LoadZoneBlockedSpells();
|
zone->LoadZoneBlockedSpells();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case ServerOP_ReloadCommands:
|
|
||||||
{
|
|
||||||
zone->SendReloadMessage("Commands");
|
|
||||||
command_init();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case ServerOP_ReloadContentFlags:
|
case ServerOP_ReloadContentFlags:
|
||||||
{
|
{
|
||||||
zone->SendReloadMessage("Content Flags");
|
zone->SendReloadMessage("Content Flags");
|
||||||
|
|||||||
Reference in New Issue
Block a user