1
0
mirror of https://github.com/minetest/minetest.git synced 2025-07-03 00:20:21 +02:00

Changed Directions to North, South, etc...

This commit is contained in:
Yaman
2014-12-26 23:36:28 -05:00
parent 777c9eb5fc
commit 64040ec707

View File

@ -4004,16 +4004,16 @@ void Game::updateGui(float *statustext_time, const RunStats &stats,
const char* player_direction;
if (yaw >= 45 and yaw < 135) {
player_direction = "-X";
player_direction = "West";
}
else if (yaw >= 135 and yaw < 225) {
player_direction = "-Z";
player_direction = "South";
}
else if (yaw >= 225 and yaw < 315) {
player_direction = "+X";
player_direction = "East";
}
else {
player_direction = "+Z";
player_direction = "North";
}
std::ostringstream os(std::ios_base::binary);