VM 0-20-00
Server-Side
This commit is contained in:
Victor Chow 2001-11-14 05:04:29 +00:00
parent f1331b7ee2
commit 322e8aa7de
2 changed files with 5 additions and 0 deletions

View file

@ -1200,6 +1200,10 @@ static int PM_FootstepForSurface( void ) {
return EV_FOOTSTEP_GRASS;
}
//if ( pml.groundTrace.surfaceFlags & SURF_GRAVEL ) {
//return EV_FOOTSTEP_GRAVEL;
//}
if ( pml.groundTrace.surfaceFlags & SURF_WOOD ) {
return EV_FOOTSTEP_WOOD;
}

View file

@ -778,6 +778,7 @@ typedef enum {
EV_FOOTSTEP_WOOD,
EV_FOOTSTEP_CARPET,
EV_FOOTSTEP_METAL2,
//EV_FOOTSTEP_GRAVEL,
EV_FOOTSPLASH,
EV_FOOTWADE,
EV_SWIM,