| 1087 | } |
| 1088 | |
| 1089 | void renderclients() |
| 1090 | { |
| 1091 | playerent *d; |
| 1092 | loopv(players) if((d = players[i]) && d->state!=CS_SPAWNING && d->state!=CS_SPECTATE && (!player1->isspectating() || player1->spectatemode != SM_FOLLOW1ST || player1->followplayercn != i)) renderclientp(d); |
| 1093 | if(player1->state==CS_DEAD || ((reflecting && !refracting) && (player1->state!=CS_SPECTATE || player1->spectatemode==SM_FLY))) renderclientp(player1); |
| 1094 | } |
| 1095 | |
| 1096 | void loadallmapmodels() // try to find all mapmodels in packages/models/mapmodels |
| 1097 | { |
no test coverage detected