diff options
author | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2017-09-19 17:52:09 +0200 |
---|---|---|
committer | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2018-01-13 03:39:31 +0100 |
commit | d56fa5d68fcdfa2fdfc601d10e9292d6a5883dcd (patch) | |
tree | 86133ce5c166d20cc25706b09a81225105a580e2 /src/World.cpp | |
parent | 2017-09-17 (diff) | |
download | AltCraft-d56fa5d68fcdfa2fdfc601d10e9292d6a5883dcd.tar AltCraft-d56fa5d68fcdfa2fdfc601d10e9292d6a5883dcd.tar.gz AltCraft-d56fa5d68fcdfa2fdfc601d10e9292d6a5883dcd.tar.bz2 AltCraft-d56fa5d68fcdfa2fdfc601d10e9292d6a5883dcd.tar.lz AltCraft-d56fa5d68fcdfa2fdfc601d10e9292d6a5883dcd.tar.xz AltCraft-d56fa5d68fcdfa2fdfc601d10e9292d6a5883dcd.tar.zst AltCraft-d56fa5d68fcdfa2fdfc601d10e9292d6a5883dcd.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 80ee4b9..8cff53a 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -120,7 +120,7 @@ static Section fallbackSection; const Section &World::GetSection(Vector sectionPos) { auto result = sections.find(sectionPos); if (result == sections.end()) { - //LOG(ERROR) << "Accessed not loaded section " << sectionPos; + LOG(ERROR) << "Accessed not loaded section " << sectionPos; return fallbackSection; } else { |