diff options
| author | Vincent-Michael <vincent_michael@gmx.de> | 2015-11-15 03:38:02 +0100 |
|---|---|---|
| committer | Vincent-Michael <vincent_michael@gmx.de> | 2015-11-15 03:38:02 +0100 |
| commit | 00b4e8b6cc65cb8b6d780b820fde0142ae492e78 (patch) | |
| tree | 6fcd40adead02f1b32c1b2ca45cac6ce102bee23 /src/server/scripts/Commands | |
| parent | d80f38ed4f5cb4c756096627922e4fbca22ed13a (diff) | |
Scripts: Added missing overrides
Diffstat (limited to 'src/server/scripts/Commands')
| -rw-r--r-- | src/server/scripts/Commands/cs_ahbot.cpp | 2 | ||||
| -rw-r--r-- | src/server/scripts/Commands/cs_rbac.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Commands/cs_ahbot.cpp b/src/server/scripts/Commands/cs_ahbot.cpp index 44889fccd37..386a5108b91 100644 --- a/src/server/scripts/Commands/cs_ahbot.cpp +++ b/src/server/scripts/Commands/cs_ahbot.cpp @@ -33,7 +33,7 @@ class ahbot_commandscript : public CommandScript public: ahbot_commandscript(): CommandScript("ahbot_commandscript") {} - std::vector<ChatCommand> GetCommands() const + std::vector<ChatCommand> GetCommands() const override { static std::vector<ChatCommand> ahbotItemsAmountCommandTable = { diff --git a/src/server/scripts/Commands/cs_rbac.cpp b/src/server/scripts/Commands/cs_rbac.cpp index 86d9ba17114..dfe385bee39 100644 --- a/src/server/scripts/Commands/cs_rbac.cpp +++ b/src/server/scripts/Commands/cs_rbac.cpp @@ -49,7 +49,7 @@ class rbac_commandscript : public CommandScript public: rbac_commandscript() : CommandScript("rbac_commandscript") { } - std::vector<ChatCommand> GetCommands() const + std::vector<ChatCommand> GetCommands() const override { static std::vector<ChatCommand> rbacAccountCommandTable = { |
