summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-03-06 13:35:53 +0100
committerHowaner <franzi.moos@googlemail.com>2014-03-06 13:35:53 +0100
commit1c7a580e520ba6c28936e46d36abba658bd477b1 (patch)
tree23d69f6a1b7823b1f9ecf8597bcd28191e1df8c0
parentBroadcast the Equipped Item, if the Slot is changed. (diff)
downloadcuberite-1c7a580e520ba6c28936e46d36abba658bd477b1.tar
cuberite-1c7a580e520ba6c28936e46d36abba658bd477b1.tar.gz
cuberite-1c7a580e520ba6c28936e46d36abba658bd477b1.tar.bz2
cuberite-1c7a580e520ba6c28936e46d36abba658bd477b1.tar.lz
cuberite-1c7a580e520ba6c28936e46d36abba658bd477b1.tar.xz
cuberite-1c7a580e520ba6c28936e46d36abba658bd477b1.tar.zst
cuberite-1c7a580e520ba6c28936e46d36abba658bd477b1.zip
-rw-r--r--src/Blocks/WorldInterface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Blocks/WorldInterface.h b/src/Blocks/WorldInterface.h
index c38ffc6db..e59b00eff 100644
--- a/src/Blocks/WorldInterface.h
+++ b/src/Blocks/WorldInterface.h
@@ -28,6 +28,6 @@ public:
/** Spawns a mob of the specified type. Returns the mob's EntityID if recognized and spawned, <0 otherwise */
virtual int SpawnMob(double a_PosX, double a_PosY, double a_PosZ, cMonster::eType a_MonsterType) = 0;
- /** If there is a block entity at the specified coords, sends it to the client specified */
+ /** Sends the block on those coords to the player */
virtual void SendBlockTo(int a_BlockX, int a_BlockY, int a_BlockZ, cPlayer * a_Player) = 0;
};