akashi-esquizolandia/core/include/packet/packet_ms.h
in1tiate 5de07f2eb6
Check for doubleposts per client, not per area (#338)
* Check for doubleposts per client, not per area

* Don't count testimony commands as doubleposts

* noooo the heckin indenterinos

* change func name for clarity

* *tiktok voice* Drowning myself in the skibidi toilet!
2024-03-08 11:11:06 -06:00

19 lines
473 B
C++

#ifndef PACKET_MS_H
#define PACKET_MS_H
#include "include/network/aopacket.h"
class PacketMS : public AOPacket
{
public:
PacketMS(QStringList &contents);
virtual PacketInfo getPacketInfo() const;
virtual void handlePacket(AreaData *area, AOClient &client) const;
virtual bool validatePacket() const;
private:
AOPacket *validateIcPacket(AOClient &client) const;
QRegularExpressionMatch isTestimonyJumpCommand(QString message) const;
};
#endif