Make one of the multiple types of a given monster class. The second parameter specifies a special casing bit mask to allow the normal genesis masks to be deactivated. Returns Null if no monsters in that class can be made. */
| 1870 | to allow the normal genesis masks to be deactivated. |
| 1871 | Returns Null if no monsters in that class can be made. */ |
| 1872 | struct permonst * |
| 1873 | mkclass(char class, int spc) |
| 1874 | { |
| 1875 | return mkclass_aligned(class, spc, A_NONE); |
| 1876 | } |
| 1877 | |
| 1878 | /* mkclass() with alignment restrictions; used by ndemon() */ |
| 1879 | struct permonst * |
no test coverage detected