Browse Source

Re-add `virtual` that was accidentally removed

Alexander Wilms 1 year ago
parent
commit
54b44aa5e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/rmg/modificators/Modificator.h

+ 1 - 1
lib/rmg/modificators/Modificator.h

@@ -40,7 +40,7 @@ public:
 	Modificator() = delete;
 	Modificator(Zone & zone, RmgMap & map, CMapGenerator & generator);
 	
-	void init() {/*override to add dependencies*/}
+	virtual void init() {/*override to add dependencies*/}
 	virtual char dump(const int3 &);
 	virtual ~Modificator() = default;