diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2014-05-22 11:46:38 +0200 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2014-05-22 11:46:38 +0200 |
commit | 592a0b6147f359fd9d12a28c9c43c208d84b5b3f (patch) | |
tree | cf45502f7a93170d748fa5c4678000e9de129e11 /src/Entities/Entity.h | |
parent | cPlayer overrides the SetSpeedXX functions (diff) | |
download | cuberite-592a0b6147f359fd9d12a28c9c43c208d84b5b3f.tar cuberite-592a0b6147f359fd9d12a28c9c43c208d84b5b3f.tar.gz cuberite-592a0b6147f359fd9d12a28c9c43c208d84b5b3f.tar.bz2 cuberite-592a0b6147f359fd9d12a28c9c43c208d84b5b3f.tar.lz cuberite-592a0b6147f359fd9d12a28c9c43c208d84b5b3f.tar.xz cuberite-592a0b6147f359fd9d12a28c9c43c208d84b5b3f.tar.zst cuberite-592a0b6147f359fd9d12a28c9c43c208d84b5b3f.zip |
Diffstat (limited to 'src/Entities/Entity.h')
-rw-r--r-- | src/Entities/Entity.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entities/Entity.h b/src/Entities/Entity.h index fc72462c3..ed67465a3 100644 --- a/src/Entities/Entity.h +++ b/src/Entities/Entity.h @@ -221,7 +221,7 @@ public: // tolua_begin virtual void SetSpeed (double a_SpeedX, double a_SpeedY, double a_SpeedZ); - virtual void SetSpeed (const Vector3d & a_Speed) { SetSpeed(a_Speed.x, a_Speed.y, a_Speed.z); } + void SetSpeed (const Vector3d & a_Speed) { SetSpeed(a_Speed.x, a_Speed.y, a_Speed.z); } virtual void SetSpeedX (double a_SpeedX); virtual void SetSpeedY (double a_SpeedY); virtual void SetSpeedZ (double a_SpeedZ); |