aboutsummaryrefslogtreecommitdiff
path: root/backend/WeaponObject.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-02 22:19:15 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-02 22:19:15 +0100
commit07b8a5b0baed8c7b23681c99f25f297045945bfc (patch)
tree8383b4b675aba53d19a667f4713c3e73c32e9652 /backend/WeaponObject.h
parentd554cb39a2f1ec97dd214a5dd200ae5f03cf616d (diff)
fix more bugs
Diffstat (limited to 'backend/WeaponObject.h')
-rw-r--r--backend/WeaponObject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/WeaponObject.h b/backend/WeaponObject.h
index b54ab59..e7b7ed3 100644
--- a/backend/WeaponObject.h
+++ b/backend/WeaponObject.h
@@ -9,7 +9,7 @@ class WeaponObject : public Object {
public:
void set_damage(const Range<int> & range);
Range<int> get_damage() const;
- virtual const String & get_displayname() const;
+ virtual String get_displayname() const;
private:
int damage_min = 0;