summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/BlockEntity.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-12-30 17:41:59 +0100
committermadmaxoft <github@xoft.cz>2013-12-30 17:41:59 +0100
commitee15d4e08e90536afbb381a6d65a418e0027658d (patch)
tree6ac904913525ac4339d05693f4da6aa12cc8ef9e /src/BlockEntities/BlockEntity.h
parentconverted commneted paramater names to the unused macro (diff)
downloadcuberite-ee15d4e08e90536afbb381a6d65a418e0027658d.tar
cuberite-ee15d4e08e90536afbb381a6d65a418e0027658d.tar.gz
cuberite-ee15d4e08e90536afbb381a6d65a418e0027658d.tar.bz2
cuberite-ee15d4e08e90536afbb381a6d65a418e0027658d.tar.lz
cuberite-ee15d4e08e90536afbb381a6d65a418e0027658d.tar.xz
cuberite-ee15d4e08e90536afbb381a6d65a418e0027658d.tar.zst
cuberite-ee15d4e08e90536afbb381a6d65a418e0027658d.zip
Diffstat (limited to 'src/BlockEntities/BlockEntity.h')
-rw-r--r--src/BlockEntities/BlockEntity.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/BlockEntities/BlockEntity.h b/src/BlockEntities/BlockEntity.h
index c3b8d41c0..7c6688f8d 100644
--- a/src/BlockEntities/BlockEntity.h
+++ b/src/BlockEntities/BlockEntity.h
@@ -87,10 +87,9 @@ public:
virtual void SendTo(cClientHandle & a_Client) = 0;
/// Ticks the entity; returns true if the chunk should be marked as dirty as a result of this ticking. By default does nothing.
- virtual bool Tick(float a_Dt, cChunk & a_Chunk)
+ virtual bool Tick(float a_Dt, cChunk & /* a_Chunk */)
{
UNUSED(a_Dt);
- UNUSED(a_Chunk);
return false;
}