SVN r114 (trunk)

This commit is contained in:
Christoph Oelckers 2006-05-14 14:30:13 +00:00
commit caed57baa5
38 changed files with 372 additions and 393 deletions

View file

@ -2254,6 +2254,14 @@ void Net_DoCommand (int type, byte **stream, int player)
}
break;
case DEM_CROUCH:
if (gamestate == GS_LEVEL && players[player].mo != NULL)
{
players[player].crouching = players[player].crouchdir<0? 1 : -1;
}
break;
default:
I_Error ("Unknown net command: %d", type);
break;