- fixed: The 'open door in 5 minutes sector type had the order of parameters wrong, due to a bad function prototype.

This commit is contained in:
Christoph Oelckers 2016-03-24 18:01:01 +01:00
commit deafa0bce0
2 changed files with 2 additions and 2 deletions

View file

@ -1213,7 +1213,7 @@ void P_InitSectorSpecial(sector_t *sector, int special, bool nothinkers)
break;
case dSector_DoorRaiseIn5Mins:
new DDoor (sector, DDoor::doorWaitRaise, 2*FRACUNIT, TICRATE*30/7, 5*60*TICRATE, 0);
new DDoor (sector, DDoor::doorWaitRaise, 2*FRACUNIT, TICRATE*30/7, 0, 5*60*TICRATE);
break;
case dFriction_Low: