Skip to content

Commit

Permalink
Script_ModMe: Fix stupid bug in CompileLightmaps
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeto committed Jan 22, 2020
1 parent 1b52b19 commit 4cd423d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ bCString CMD_World_Sub::CompileLightmaps( bTObjArray< bCString > a_arrParams )

bCString AreaMessage;

if(a_arrParams.GetCount() >= 2 || a_arrParams.GetCount() <= 4)
if(a_arrParams.GetCount() >= 2 && a_arrParams.GetCount() <= 4)
{
GEInt iMinPositionX, iMaxPositionX, iMinPositionZ, iMaxPositionZ;

Expand Down

0 comments on commit 4cd423d

Please sign in to comment.