Compile bug fixes.

This commit is contained in:
whipowill
2022-05-18 15:29:30 -05:00
parent bd2714535a
commit 972735747d
5 changed files with 5 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ class Multiplier : public AiNamedObject
Multiplier(PlayerbotAI* botAI, std::string const name) : AiNamedObject(botAI, name) {}
virtual ~Multiplier() { }
virtual float GetValue(Action* action) { return 1.0f; }
virtual float GetValue([[maybe_unused]] Action* action) { return 1.0f; } // unused param - whipowill
};
#endif