aboutsummaryrefslogtreecommitdiff
path: root/src/utility.h
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2010-12-13 21:32:35 +0200
committerPerttu Ahola <celeron55@gmail.com>2010-12-13 21:32:35 +0200
commit3ac2abb0b5f84819abe6feea9d7b883b40369610 (patch)
tree2fad297e30cdae1b205d77dc559b25d9e5a0efc7 /src/utility.h
parent22037459e321cfe51719c58f492145d39b48c196 (diff)
downloaddragonfireclient-3ac2abb0b5f84819abe6feea9d7b883b40369610.tar.xz
commit before content-tile separation
Diffstat (limited to 'src/utility.h')
-rw-r--r--src/utility.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utility.h b/src/utility.h
index d22e1d651..4c9a2d73a 100644
--- a/src/utility.h
+++ b/src/utility.h
@@ -461,12 +461,12 @@ inline void getFacePositions(core::list<v3s16> &list, u16 d)
/*
This is an optimized sequence of coordinates.
*/
+ list.push_back(v3s16( 0, 1, 0)); // top
list.push_back(v3s16( 0, 0, 1)); // back
list.push_back(v3s16(-1, 0, 0)); // left
list.push_back(v3s16( 1, 0, 0)); // right
list.push_back(v3s16( 0, 0,-1)); // front
list.push_back(v3s16( 0,-1, 0)); // bottom
- list.push_back(v3s16( 0, 1, 0)); // top
// 6
list.push_back(v3s16(-1, 0, 1)); // back left
list.push_back(v3s16( 1, 0, 1)); // back right