return the M2 flags of monster that an artifact's special attacks apply * against */
| 1062 | /* return the M2 flags of monster that an artifact's special attacks apply |
| 1063 | * against */ |
| 1064 | long |
| 1065 | spec_m2(struct obj *otmp) |
| 1066 | { |
| 1067 | const struct artifact *artifact = get_artifact(otmp); |
| 1068 | |
| 1069 | if (artifact != &artilist[ART_NONARTIFACT]) |
| 1070 | return artifact->mtype; |
| 1071 | return 0L; |
| 1072 | } |
| 1073 | |
| 1074 | /* special attack bonus */ |
| 1075 | int |
no test coverage detected