summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockPumpkin.h
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2013-09-11 21:07:51 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2013-09-11 21:07:51 +0200
commit3a1def2c905a8e6d8807d14c5953cceb04f6b8a6 (patch)
treea14f535e2121b38b2b188a52471c137fc5358d87 /source/Blocks/BlockPumpkin.h
parentPumpkins (diff)
downloadcuberite-3a1def2c905a8e6d8807d14c5953cceb04f6b8a6.tar
cuberite-3a1def2c905a8e6d8807d14c5953cceb04f6b8a6.tar.gz
cuberite-3a1def2c905a8e6d8807d14c5953cceb04f6b8a6.tar.bz2
cuberite-3a1def2c905a8e6d8807d14c5953cceb04f6b8a6.tar.lz
cuberite-3a1def2c905a8e6d8807d14c5953cceb04f6b8a6.tar.xz
cuberite-3a1def2c905a8e6d8807d14c5953cceb04f6b8a6.tar.zst
cuberite-3a1def2c905a8e6d8807d14c5953cceb04f6b8a6.zip
Diffstat (limited to 'source/Blocks/BlockPumpkin.h')
-rw-r--r--source/Blocks/BlockPumpkin.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/Blocks/BlockPumpkin.h b/source/Blocks/BlockPumpkin.h
index b74d60a85..76abc6818 100644
--- a/source/Blocks/BlockPumpkin.h
+++ b/source/Blocks/BlockPumpkin.h
@@ -28,10 +28,9 @@ public:
inline static NIBBLETYPE PlayerYawToMetaData(double a_Yaw)
{
-
ASSERT((a_Yaw >= -180) && (a_Yaw < 180));
- a_Yaw -= 180;
- a_Yaw += 360 + 45;
+
+ a_Yaw += 180 + 45;
if (a_Yaw > 360)
{
a_Yaw -= 360;