From c1a5a661e7d40ab4d355bbf72c3b45c044efb0e8 Mon Sep 17 00:00:00 2001 From: EgzoT Date: Fri, 17 Nov 2017 02:32:31 +0100 Subject: [PATCH] Fixed indentation and changed function location --- src/client/thingtype.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/thingtype.h b/src/client/thingtype.h index ee362e95..ac95f101 100644 --- a/src/client/thingtype.h +++ b/src/client/thingtype.h @@ -178,7 +178,6 @@ public: bool isNotMoveable() { return m_attribs.has(ThingAttrNotMoveable); } bool blockProjectile() { return m_attribs.has(ThingAttrBlockProjectile); } bool isNotPathable() { return m_attribs.has(ThingAttrNotPathable); } - void setPathable(bool var); bool isPickupable() { return m_attribs.has(ThingAttrPickupable); } bool isHangable() { return m_attribs.has(ThingAttrHangable); } bool isHookSouth() { return m_attribs.has(ThingAttrHookSouth); } @@ -207,6 +206,7 @@ public: // additional float getOpacity() { return m_opacity; } bool isNotPreWalkable() { return m_attribs.has(ThingAttrNotPreWalkable); } + void setPathable(bool var); private: const TexturePtr& getTexture(int animationPhase);