Skip to content
Snippets Groups Projects
Commit 1ceee24f authored by Amorilia's avatar Amorilia
Browse files

Fixed a little bug I introduced earlier. :oops:

parent d9ccdfed
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ class AControllable : public ABlock {
public:
AControllable();
void Init() {}
bool IsControllable() { return true; }
bool IsControllable() const { return true; }
~AControllable() {}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment