diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-02 22:19:15 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-02 22:19:15 +0100 |
commit | 07b8a5b0baed8c7b23681c99f25f297045945bfc (patch) | |
tree | 8383b4b675aba53d19a667f4713c3e73c32e9652 /backend/ArmorObject.h | |
parent | d554cb39a2f1ec97dd214a5dd200ae5f03cf616d (diff) |
fix more bugs
Diffstat (limited to 'backend/ArmorObject.h')
-rw-r--r-- | backend/ArmorObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/ArmorObject.h b/backend/ArmorObject.h index 8889ed7..068594e 100644 --- a/backend/ArmorObject.h +++ b/backend/ArmorObject.h @@ -8,7 +8,7 @@ class ArmorObject : public Object { public: void set_protection(int protection); int get_protection() const; - virtual const String & get_displayname() const; + virtual String get_displayname() const; private: int protection = 0; |