[12065] Fix various warnings

This commit is contained in:
Schmoozerd 2012-07-20 18:48:48 +02:00
parent 5f4d61928f
commit 84080ee5d3
27 changed files with 91 additions and 89 deletions

View file

@ -42,7 +42,7 @@ struct PoolTemplateData
// helpers
bool CanBeSpawnedAtMap(MapEntry const* entry) const
{
return mapEntry && (mapEntry == entry || !entry->Instanceable() && !mapEntry->Instanceable());
return mapEntry && (mapEntry == entry || (!entry->Instanceable() && !mapEntry->Instanceable()));
}
};