Remove 1 Assert check that was introduced in r7747.

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@7751 4a71c877-e1ca-e34f-864e-861f7616d084
master
Buginator 2009-06-16 05:09:43 +00:00 committed by Git SVN Gateway
parent 8efc80afbe
commit a16974cf6d
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ extern BOOL placeDroid(STRUCTURE *psStructure, UDWORD *droidX, UDWORD *droidY);
static inline BOOL isLasSat(STRUCTURE_STATS *pStructureType)
{
ASSERT_OR_RETURN(false, pStructureType != NULL, "LasSat is invalid?");
ASSERT_OR_RETURN(false, pStructureType->psWeapStat[0] != NULL, "This doesn't appear to be a LasSat?");
return (pStructureType->psWeapStat[0]
&& pStructureType->psWeapStat[0]->weaponSubClass == WSC_LAS_SAT);
}