diff options
Diffstat (limited to 'src/content_sao.h')
-rw-r--r-- | src/content_sao.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/content_sao.h b/src/content_sao.h index b8ef5382d..e9047daf0 100644 --- a/src/content_sao.h +++ b/src/content_sao.h @@ -122,10 +122,10 @@ public: bool isStaticAllowed() const { return m_prop.static_save; } void getStaticData(std::string *result) const; - int punch(v3f dir, + u16 punch(v3f dir, const ToolCapabilities *toolcap = nullptr, ServerActiveObject *puncher = nullptr, - float time_from_last_punch = 1000000); + float time_from_last_punch = 1000000.0f); void rightClick(ServerActiveObject *clicker); void setPos(const v3f &pos); void moveTo(v3f pos, bool continuous); @@ -258,7 +258,7 @@ public: Interaction interface */ - int punch(v3f dir, + u16 punch(v3f dir, const ToolCapabilities *toolcap, ServerActiveObject *puncher, float time_from_last_punch); |