diff options
Diffstat (limited to '')
-rw-r--r-- | src/Entities/Pickup.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Entities/Pickup.h b/src/Entities/Pickup.h index c2fcbd7f2..61e433e07 100644 --- a/src/Entities/Pickup.h +++ b/src/Entities/Pickup.h @@ -36,6 +36,8 @@ public: virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override; + virtual bool DoesPreventBlockPlacement(void) const override { return false; } + /** Returns whether this pickup is allowed to combine with other similar pickups */ bool CanCombine(void) const { return m_bCanCombine; } // tolua_export |