diff options
author | Mattes D <github@xoft.cz> | 2015-01-25 16:25:15 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-01-27 14:53:32 +0100 |
commit | 6ec5e8caa77829d7ea3593b08f1f91244d027601 (patch) | |
tree | d5dafdb9e99e4648d0b257e34d23546a48e77bca /src/Generating/BioGen.cpp | |
parent | Removed ListenThread and SocketThreads. (diff) | |
download | cuberite-6ec5e8caa77829d7ea3593b08f1f91244d027601.tar cuberite-6ec5e8caa77829d7ea3593b08f1f91244d027601.tar.gz cuberite-6ec5e8caa77829d7ea3593b08f1f91244d027601.tar.bz2 cuberite-6ec5e8caa77829d7ea3593b08f1f91244d027601.tar.lz cuberite-6ec5e8caa77829d7ea3593b08f1f91244d027601.tar.xz cuberite-6ec5e8caa77829d7ea3593b08f1f91244d027601.tar.zst cuberite-6ec5e8caa77829d7ea3593b08f1f91244d027601.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/BioGen.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Generating/BioGen.cpp b/src/Generating/BioGen.cpp index 2cc810d3b..378ece6a3 100644 --- a/src/Generating/BioGen.cpp +++ b/src/Generating/BioGen.cpp @@ -205,8 +205,7 @@ void cBiomeGenList::InitializeBiomes(const AString & a_Biomes) int Count = 1; if (Split2.size() >= 2) { - Count = atol(Split2[1].c_str()); - if (Count <= 0) + if (!StringToInteger(Split2[1], Count)) { LOGWARNING("Cannot decode biome count: \"%s\"; using 1.", Split2[1].c_str()); Count = 1; |