From e55ed9a138e97f6fba5e3b6858a755f8a50197d2 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 29 May 2014 19:32:58 +0300 Subject: Move from client packets limiter related code into separate file. --- src/gui/windows/npcdialog.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/gui/windows/npcdialog.cpp') diff --git a/src/gui/windows/npcdialog.cpp b/src/gui/windows/npcdialog.cpp index 47ad71f32..11ba96933 100644 --- a/src/gui/windows/npcdialog.cpp +++ b/src/gui/windows/npcdialog.cpp @@ -57,6 +57,7 @@ #include "net/net.h" #include "net/npchandler.h" +#include "net/packetlimiter.h" #include "utils/copynpaste.h" #include "utils/delete2.h" @@ -282,7 +283,7 @@ void NpcDialog::action(const ActionEvent &event) { if (mActionState == NPC_ACTION_NEXT) { - if (!client->limitPackets(PACKET_NPC_NEXT)) + if (!PacketLimiter::limitPackets(PACKET_NPC_NEXT)) return; nextDialog(); @@ -307,7 +308,7 @@ void NpcDialog::action(const ActionEvent &event) if (selectedIndex >= static_cast(mItems.size()) || selectedIndex < 0 - || !client->limitPackets(PACKET_NPC_INPUT)) + || !PacketLimiter::limitPackets(PACKET_NPC_INPUT)) { return; } @@ -320,7 +321,7 @@ void NpcDialog::action(const ActionEvent &event) } case NPC_INPUT_STRING: { - if (!client->limitPackets(PACKET_NPC_INPUT)) + if (!PacketLimiter::limitPackets(PACKET_NPC_INPUT)) return; printText = mTextField->getText(); Net::getNpcHandler()->stringInput(mNpcId, printText); @@ -328,7 +329,7 @@ void NpcDialog::action(const ActionEvent &event) } case NPC_INPUT_INTEGER: { - if (!client->limitPackets(PACKET_NPC_INPUT)) + if (!PacketLimiter::limitPackets(PACKET_NPC_INPUT)) return; printText = strprintf("%d", mIntField->getValue()); Net::getNpcHandler()->integerInput( @@ -337,7 +338,7 @@ void NpcDialog::action(const ActionEvent &event) } case NPC_INPUT_ITEM: { - if (!client->limitPackets(PACKET_NPC_INPUT)) + if (!PacketLimiter::limitPackets(PACKET_NPC_INPUT)) return; std::string str; -- cgit v1.2.3-60-g2f50