| 974 | COMMAND(botsshoot, "i"); |
| 975 | |
| 976 | void idlebots(int *Idle) |
| 977 | { |
| 978 | switch(*Idle) |
| 979 | { |
| 980 | case 0: |
| 981 | BotManager.SetIdleBots(false); |
| 982 | conoutf("Bots aren't idle"); |
| 983 | break; |
| 984 | case 1: |
| 985 | BotManager.SetIdleBots(true); |
| 986 | conoutf("Bots are idle"); |
| 987 | break; |
| 988 | default: |
| 989 | intret(BotManager.IdleBots()); break; |
| 990 | } |
| 991 | } |
| 992 | |
| 993 | COMMAND(idlebots, "i"); |
| 994 |
nothing calls this directly
no test coverage detected