diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-02-02 22:48:21 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-02-02 22:48:21 +0100 |
commit | 0f67f80c6e60b2696bf94ee91330cdc0cefde3fa (patch) | |
tree | ce3d4d45a1a0fe077fe6b5145c4926188b213352 /src/World.cpp | |
parent | Revert "Added LOGREPLACELINE for line replacement" (diff) | |
download | cuberite-0f67f80c6e60b2696bf94ee91330cdc0cefde3fa.tar cuberite-0f67f80c6e60b2696bf94ee91330cdc0cefde3fa.tar.gz cuberite-0f67f80c6e60b2696bf94ee91330cdc0cefde3fa.tar.bz2 cuberite-0f67f80c6e60b2696bf94ee91330cdc0cefde3fa.tar.lz cuberite-0f67f80c6e60b2696bf94ee91330cdc0cefde3fa.tar.xz cuberite-0f67f80c6e60b2696bf94ee91330cdc0cefde3fa.tar.zst cuberite-0f67f80c6e60b2696bf94ee91330cdc0cefde3fa.zip |
Diffstat (limited to '')
-rw-r--r-- | src/World.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/World.cpp b/src/World.cpp index f598874ea..d8850e78a 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -633,7 +633,7 @@ void cWorld::GenerateRandomSpawn(void) { LOGD("Generating random spawnpoint..."); - while (IsBlockWater(GetBlock((int)m_SpawnX, GetHeight((int)m_SpawnX, (int)m_SpawnZ), (int)m_SpawnZ), true)) + while (IsBlockWaterOrIce(GetBlock((int)m_SpawnX, GetHeight((int)m_SpawnX, (int)m_SpawnZ), (int)m_SpawnZ))) { if ((GetTickRandomNumber(4) % 2) == 0) // Randomise whether to increment X or Z coords { |