mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
3939f19b08
Testing does not reveal any issues with existing buff removals sending this GM as well and may fix more bugs that were unknown, or cause more.
23 lines
395 B
C++
23 lines
395 B
C++
#pragma once
|
|
#include "Behavior.h"
|
|
|
|
class RemoveBuffBehavior final : public Behavior
|
|
{
|
|
public:
|
|
|
|
/*
|
|
* Inherited
|
|
*/
|
|
|
|
explicit RemoveBuffBehavior(const uint32_t behaviorId) : Behavior(behaviorId) {
|
|
}
|
|
|
|
void Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) override;
|
|
|
|
void Load() override;
|
|
|
|
private:
|
|
bool m_RemoveImmunity;
|
|
uint32_t m_BuffId;
|
|
};
|