diff --git a/AI/VCAI/VCAI.cpp b/AI/VCAI/VCAI.cpp index 81b263fcb..453db3444 100644 --- a/AI/VCAI/VCAI.cpp +++ b/AI/VCAI/VCAI.cpp @@ -2629,7 +2629,8 @@ bool shouldVisit (const CGHeroInstance * h, const CGObjectInstance * obj) return false; } case Obj::LIBRARY_OF_ENLIGHTENMENT: - return h->level >= 12; + if (h->level < 12) + return false; } if (obj->wasVisited(h))