Skip to content

Commit 9bbc83f

Browse files
authored
Update PvPScript.cpp - remove override
1 parent af4da91 commit 9bbc83f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PvPScript.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class PvPScript : public PlayerScript
2222
PLAYERHOOK_ON_PVP_KILL
2323
}) {}
2424

25-
void OnPlayerKilledByCreature(Creature* killer, Player* killed/*, bool& durabilityLoss*/) override
25+
void OnPlayerKilledByCreature(Creature* killer, Player* killed/*, bool& durabilityLoss*/)
2626
{
2727
if (!sConfigMgr->GetOption<bool>("PvPChest", true))
2828
return;
@@ -50,7 +50,7 @@ class PvPScript : public PlayerScript
5050
}
5151
}
5252

53-
void OnPlayerPVPKill(Player* killer, Player* killed) override
53+
void OnPlayerPVPKill(Player* killer, Player* killed)
5454
{
5555
if (!sConfigMgr->GetOption<bool>("PvPChest", true))
5656
return;

0 commit comments

Comments
 (0)