1 2 3 4 5 6 7 8 9 10 11
|
--- a/src/AIEcho.cpp
b/src/AIEcho.cpp
@@ -4387,7 4387,7 @@
{
if(is_end && rhs.is_end)
return false;
- return is_end!=rhs.is_end || team!=rhs.team || building_type!=rhs.building_type || level!=rhs.level || construction_site!=rhs.construction_site;
return bool(is_end!=rhs.is_end || team!=rhs.team || building_type!=rhs.building_type || level!=rhs.level || construction_site!=rhs.construction_site);
}
|