diff options
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/playerinfo.cpp | 2 | ||||
-rw-r--r-- | src/being/playerinfo.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/being/playerinfo.cpp b/src/being/playerinfo.cpp index a374d8b5b..0f9eb6b6c 100644 --- a/src/being/playerinfo.cpp +++ b/src/being/playerinfo.cpp @@ -234,7 +234,7 @@ Equipment *getEquipment() return mEquipment; } -Item *getEquipment(const unsigned int slot) +const Item *getEquipment(const unsigned int slot) { if (mEquipment) return mEquipment->getEquipment(slot); diff --git a/src/being/playerinfo.h b/src/being/playerinfo.h index c45ba8a06..fbd8d4109 100644 --- a/src/being/playerinfo.h +++ b/src/being/playerinfo.h @@ -183,7 +183,7 @@ namespace PlayerInfo /** * Returns the player's equipment at the given slot. */ - Item *getEquipment(const unsigned int slot) A_WARN_UNUSED; + const Item *getEquipment(const unsigned int slot) A_WARN_UNUSED; // --- Misc ------------------------------------------------------------------- |