* proper random_ comparisons
* proper mienemy comparisons
* add mienemy/micaster enum
* GOE enum
This commit is contained in:
qndel 2020-12-04 19:16:58 +01:00 committed by GitHub
commit 7f7ae623df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 386 additions and 371 deletions

View file

@ -191,7 +191,7 @@ BOOL CheckThemeObj3(int xp, int yp, int t, int f)
return FALSE;
if (dObject[xp + trm3x[i]][yp + trm3y[i]])
return FALSE;
if (f != -1 && !random_(0, f))
if (f != -1 && random_(0, f) == 0)
return FALSE;
}