From: Beha Date: Thu, 1 Aug 2019 15:11:43 +0000 (-0400) Subject: Correct ServerActiveObject's virtual getArmorGroups() to be const. X-Git-Tag: 5.1.0~146 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1a97d06b5a86910d0038252ff089ce308f203e85;p=oweals%2Fminetest.git Correct ServerActiveObject's virtual getArmorGroups() to be const. Due to commit ec3142a , UnitSAO's getArmorGroups() did not match ServerActiveObject's, notably resulting in the lua get_armor_groups() call returning nothing. --- diff --git a/src/serverobject.h b/src/serverobject.h index 42eed0710..08f7a7e58 100644 --- a/src/serverobject.h +++ b/src/serverobject.h @@ -147,7 +147,7 @@ public: virtual void setArmorGroups(const ItemGroupList &armor_groups) {} - virtual const ItemGroupList &getArmorGroups() + virtual const ItemGroupList &getArmorGroups() const { static ItemGroupList rv; return rv; } virtual void setPhysicsOverride(float physics_override_speed, float physics_override_jump, float physics_override_gravity) {}