| 161 | extern const struct attack c_sa_no[NATTK]; |
| 162 | |
| 163 | void |
| 164 | sysopt_seduce_set( |
| 165 | #if 0 |
| 166 | int val) |
| 167 | { |
| 168 | /* |
| 169 | * Attack substitution is now done on the fly in getmattk(mhitu.c). |
| 170 | */ |
| 171 | struct attack *setval = val ? c_sa_yes : c_sa_no; |
| 172 | int x; |
| 173 | |
| 174 | for (x = 0; x < NATTK; x++) { |
| 175 | mons[PM_INCUBUS].mattk[x] = setval[x]; |
| 176 | mons[PM_SUCCUBUS].mattk[x] = setval[x]; |
| 177 | } |
| 178 | #else |
| 179 | int val UNUSED) |
| 180 | { |
| 181 | #endif |
| 182 | return; |
| 183 | } |
| 184 | |
| 185 | /*sys.c*/ |
no outgoing calls
no test coverage detected