Tighten parameter for removeBuff

This commit is contained in:
gsemaj
2023-08-13 10:50:50 -07:00
committed by gsemaj
parent c1aff8d3c3
commit 93ec6380c1
3 changed files with 7 additions and 7 deletions

View File

@@ -92,7 +92,7 @@ struct Player : public Entity, public ICombatant {
virtual bool addBuff(int buffId, BuffCallback<int, BuffStack*> onUpdate, BuffCallback<time_t> onTick, BuffStack* stack) override;
virtual Buff* getBuff(int buffId) override;
virtual void removeBuff(int buffId) override;
virtual void removeBuff(int buffId, int buffClass) override;
virtual void removeBuff(int buffId, BuffClass buffClass) override;
virtual void clearBuffs(bool force) override;
virtual bool hasBuff(int buffId) override;
virtual int getCompositeCondition() override;