Changed Directions to North, South, etc...

This commit is contained in:
Yaman 2014-12-26 23:36:28 -05:00
parent 777c9eb5fc
commit 64040ec707
1 changed files with 4 additions and 4 deletions

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);