
* 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!)
19 lines
473 B
C++
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
|