summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-28 21:01:46 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-28 21:01:46 +0200
commitb4e9137475557f6bde68fb6bb4c7502df19659cd (patch)
tree2ef43f1605c80c49bc957a3b7d312eb9df777af1
parentFixed most of client slowdowns caused by sending too many block changes (bad condition in FastSetBlock) (diff)
downloadcuberite-b4e9137475557f6bde68fb6bb4c7502df19659cd.tar
cuberite-b4e9137475557f6bde68fb6bb4c7502df19659cd.tar.gz
cuberite-b4e9137475557f6bde68fb6bb4c7502df19659cd.tar.bz2
cuberite-b4e9137475557f6bde68fb6bb4c7502df19659cd.tar.lz
cuberite-b4e9137475557f6bde68fb6bb4c7502df19659cd.tar.xz
cuberite-b4e9137475557f6bde68fb6bb4c7502df19659cd.tar.zst
cuberite-b4e9137475557f6bde68fb6bb4c7502df19659cd.zip
-rw-r--r--source/Entity.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Entity.h b/source/Entity.h
index 779ce5358..d80c622e3 100644
--- a/source/Entity.h
+++ b/source/Entity.h
@@ -260,7 +260,7 @@ private:
//Measured in meter/second
Vector3d m_WaterSpeed;
//Measured in Kilograms (Kg)
- double m_Mass
+ double m_Mass;
} ; // tolua_export
typedef std::list<cEntity *> cEntityList;