| 980 | } |
| 981 | |
| 982 | void pstat_weap(int *cn) |
| 983 | { |
| 984 | string weapstring = ""; |
| 985 | playerent *pl = getclient(*cn); |
| 986 | if(pl) loopi(NUMGUNS) concatformatstring(weapstring, "%s%d %d", strlen(weapstring) ? " " : "", pl->pstatshots[i], pl->pstatdamage[i]); |
| 987 | result(weapstring); |
| 988 | } |
| 989 | |
| 990 | COMMAND(pstat_weap, "i"); |
| 991 |
nothing calls this directly
no test coverage detected