Browse Source

Merge pull request #1554 from Jimmy-cell/master-daily

SetPortalStats cleanup
pull/256/head
qndel 7 years ago committed by GitHub
parent
commit
09e88bbfd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Source/portal.cpp

4
Source/portal.cpp

@ -18,12 +18,12 @@ void InitPortals()
void SetPortalStats(int i, BOOL o, int x, int y, int lvl, int lvltype)
{
portal[i].setlvl = FALSE;
portal[i].open = o;
portal[i].x = x;
portal[i].y = y;
portal[i].open = o;
portal[i].level = lvl;
portal[i].ltype = lvltype;
portal[i].setlvl = FALSE;
}
void AddWarpMissile(int i, int x, int y)

Loading…
Cancel
Save