diff options
author | peterbell10 <peterbell10@live.co.uk> | 2017-07-31 21:50:40 +0200 |
---|---|---|
committer | Lukas Pioch <lukas@zgow.de> | 2017-08-01 08:21:20 +0200 |
commit | 8eb5672920f8834ffe6edbff62713963b8d2ba3d (patch) | |
tree | 9c63da705ae076f8989414a3bc123d0a12866d59 /src/Blocks/WorldInterface.h | |
parent | Updated plugin Core (diff) | |
download | cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar.gz cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar.bz2 cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar.lz cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar.xz cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar.zst cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.zip |
Diffstat (limited to 'src/Blocks/WorldInterface.h')
-rw-r--r-- | src/Blocks/WorldInterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Blocks/WorldInterface.h b/src/Blocks/WorldInterface.h index bac6e2bdf..62fd3bb7d 100644 --- a/src/Blocks/WorldInterface.h +++ b/src/Blocks/WorldInterface.h @@ -47,7 +47,7 @@ public: virtual bool DoWithBlockEntityAt(int a_BlockX, int a_BlockY, int a_BlockZ, cBlockEntityCallback & a_Callback) = 0; /** 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; + virtual void SendBlockTo(int a_BlockX, int a_BlockY, int a_BlockZ, cPlayer & a_Player) = 0; /** Calls the callback for each player in the list; returns true if all players processed, false if the callback aborted by returning true */ virtual bool ForEachPlayer(cItemCallback<cPlayer> & a_Callback) = 0; |