From ed78baff64fe45479ca6c480d985ce0f9c0c9515 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Sat, 2 Nov 2024 23:11:42 +0100 Subject: more bug fixes --- backend/ArmorObject.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'backend/ArmorObject.h') diff --git a/backend/ArmorObject.h b/backend/ArmorObject.h index 068594e..74af728 100644 --- a/backend/ArmorObject.h +++ b/backend/ArmorObject.h @@ -6,12 +6,12 @@ class ArmorObject : public Object { using Object::Object; public: - void set_protection(int protection); - int get_protection() const; + void set_protection(unsigned int protection); + unsigned int get_protection() const; virtual String get_displayname() const; private: - int protection = 0; + unsigned int protection = 0; }; -- cgit v1.2.3