diff --git a/src/storage.cpp b/src/storage.cpp index 6bed42f..e677cc3 100644 --- a/src/storage.cpp +++ b/src/storage.cpp @@ -196,7 +196,9 @@ template bool BotStorage::load (SmallArray &data, ExtenHeader * } } - ctrl.msg ("Loaded Bots %s data v%d (Memory: %.2fMB).", type.name, hdr.version, static_cast (data.capacity () * sizeof (U)) / 1024.0f / 1024.0f); + if (game.isDeveloperMode ()) { + ctrl.msg ("Loaded Bots %s data v%d (Memory: %.2fMB).", type.name, hdr.version, static_cast (data.capacity () * sizeof (U)) / 1024.0f / 1024.0f); + } file.close (); return true;