summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLukas Pioch <lukas@zgow.de>2020-10-09 18:25:34 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2020-10-09 19:39:20 +0200
commit6ddc03db0957f9654a9720a00937f3d2450c4868 (patch)
tree5bb606e74ae7b7740b0c53f83092ed3790e331c4 /src
parentInclude sys/select.h on non-glibc Linux platforms (#4977) (diff)
downloadcuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar.gz
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar.bz2
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar.lz
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar.xz
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.tar.zst
cuberite-6ddc03db0957f9654a9720a00937f3d2450c4868.zip
Diffstat (limited to 'src')
-rw-r--r--src/World.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/World.h b/src/World.h
index a0e2d0dbc..2ff8fbe29 100644
--- a/src/World.h
+++ b/src/World.h
@@ -667,14 +667,14 @@ public:
/** Replaces the specified block with air, and calls the OnBroken block handler.
Wakes up the simulators. Doesn't produce pickups, use DropBlockAsPickups() for that instead.
Returns true on success, false if the chunk is not loaded. */
- bool DigBlock(Vector3i a_BlockPos, const cEntity * a_Digger);
+ bool DigBlock(Vector3i a_BlockPos, const cEntity * a_Digger = nullptr);
/** OBSOLETE, use the Vector3-based overload instead.
Replaces the specified block with air, and calls the apropriate block handlers (OnBreaking(), OnBroken()).
Wakes up the simulators.
Doesn't produce pickups, use DropBlockAsPickups() for that instead.
Returns true on success, false if the chunk is not loaded. */
- bool DigBlock(int a_X, int a_Y, int a_Z, cEntity * a_Digger)
+ bool DigBlock(int a_X, int a_Y, int a_Z, cEntity * a_Digger = nullptr)
{
return DigBlock({a_X, a_Y, a_Z}, a_Digger);
}