summaryrefslogtreecommitdiffstats
path: root/src/ClientHandle.h
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-11-15 22:36:31 +0100
committerHowaner <franzi.moos@googlemail.com>2014-11-15 22:36:31 +0100
commit277151582fbb0652dcf4e15f67d41f90e08bdeeb (patch)
treefe2c700c7fba45840ced4a2e2a8e31927db57978 /src/ClientHandle.h
parentUpdated APIDump (diff)
downloadcuberite-277151582fbb0652dcf4e15f67d41f90e08bdeeb.tar
cuberite-277151582fbb0652dcf4e15f67d41f90e08bdeeb.tar.gz
cuberite-277151582fbb0652dcf4e15f67d41f90e08bdeeb.tar.bz2
cuberite-277151582fbb0652dcf4e15f67d41f90e08bdeeb.tar.lz
cuberite-277151582fbb0652dcf4e15f67d41f90e08bdeeb.tar.xz
cuberite-277151582fbb0652dcf4e15f67d41f90e08bdeeb.tar.zst
cuberite-277151582fbb0652dcf4e15f67d41f90e08bdeeb.zip
Diffstat (limited to 'src/ClientHandle.h')
-rw-r--r--src/ClientHandle.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/ClientHandle.h b/src/ClientHandle.h
index a0dd4ff7a..d8cc3c643 100644
--- a/src/ClientHandle.h
+++ b/src/ClientHandle.h
@@ -125,9 +125,6 @@ public:
inline bool IsLoggedIn(void) const { return (m_State >= csAuthenticating); }
- /** Returns the positions from the last block that the player placed. */
- const Vector3i & GetLastPlacedBlock(void) const { return m_LastPlacedBlock; } // tolua_export
-
/** Called while the client is being ticked from the world via its cPlayer object */
void Tick(float a_Dt);
@@ -436,8 +433,8 @@ private:
/** Client Settings */
AString m_Locale;
- /** The positions from the last block that the player placed. It's needed to verify the sign text change. */
- Vector3i m_LastPlacedBlock;
+ /** The positions from the last sign that the player placed. It's needed to verify the sign text change. */
+ Vector3i m_LastPlacedSign;
/** The plugin channels that the client has registered. */
cChannels m_PluginChannels;