Replaced equal with correct non-equal sign.
This commit is contained in:
@ -207,7 +207,7 @@ void species::reAllocMyArrays() const
|
||||
void species::execute()
|
||||
{
|
||||
loopCounter_++;
|
||||
if (loopCounter_ % Nevery_ == 0)
|
||||
if (loopCounter_ % Nevery_ != 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user