- Fixed: When starting a new game from the menu while the fullscreen console

was open, the game was frozen before its initial setup tick until the
  console was closed. The most obvious result of this is that your view was
  stuck on the floor until the console closed.
- Fixed: Pressing ESC while editing your player name completely cleared the
  menus instead of simply canceling the name change.
- Fixed: The status bar still showed the rampage face if you held the fire
  button down while frozen.


SVN r493 (trunk)
This commit is contained in:
Randy Heit 2007-02-28 16:49:19 +00:00
commit 1ca9b88b11
4 changed files with 30 additions and 8 deletions

View file

@ -913,9 +913,9 @@ private:
if (FacePriority < 6)
{
// rapid firing
if (CPlayer->cmd.ucmd.buttons & BT_ATTACK)
if ((CPlayer->cmd.ucmd.buttons & BT_ATTACK) && !(CPlayer->cheats & (CF_FROZEN | CF_TOTALLYFROZEN)))
{
if (FaceLastAttackDown==-1)
if (FaceLastAttackDown == -1)
FaceLastAttackDown = ST_RAMPAGEDELAY;
else if (!--FaceLastAttackDown)
{