akashi-esquizolandia/core/include/packet/packet_ms.h
in1tiate 7bbf3aac17
Check doublepost per client, not per area, take 2 (#345)
* 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!

* fix segfault on blankpost (oopsie!)
2024-04-06 08:17:07 -05: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