From 66215da37aea515c2754a6a03ee0106b818e3a28 Mon Sep 17 00:00:00 2001 From: Aaron Kimbrell Date: Tue, 31 May 2022 00:24:55 -0500 Subject: [PATCH] Fix overrides in ActMine (#568) --- dScripts/ActMine.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dScripts/ActMine.h b/dScripts/ActMine.h index 85efadcc..ae6ef17e 100644 --- a/dScripts/ActMine.h +++ b/dScripts/ActMine.h @@ -3,10 +3,10 @@ class ActMine : public CppScripts::Script { public: - void OnStartup(Entity* self); + void OnStartup(Entity* self) override; void OnRebuildNotifyState(Entity* self, eRebuildState state) override; - void OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status); - void OnTimerDone(Entity* self, std::string timerName); + void OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status) override; + void OnTimerDone(Entity* self, std::string timerName) override; private: int MAX_WARNINGS = 3; float MINE_RADIUS = 10.0;