mirror of
				https://github.com/DarkflameUniverse/DarkflameServer.git
				synced 2025-11-04 06:32:00 +00:00 
			
		
		
		
	Fix overrides in ActMine (#568)
This commit is contained in:
		@@ -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;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user