monster spells (insects, nasties)
This throttles insect creation through monster spell casting. Especially insects. It was creating m_lev worth of insects--for a 25th level priest, that means every batch of insects was size 25! I also lowered the range for nasties creation for similar reasons.
This commit is contained in:
@@ -542,9 +542,12 @@ int spellnum;
|
||||
boolean success;
|
||||
int i;
|
||||
coord bypos;
|
||||
int quan;
|
||||
|
||||
quan = (mtmp->m_lev < 2) ? 1 : rnd((int)mtmp->m_lev / 2);
|
||||
if (quan < 3) quan = 3;
|
||||
success = pm ? TRUE : FALSE;
|
||||
for (i = 0; i <= (int) mtmp->m_lev; i++) {
|
||||
for (i = 0; i <= quan; i++) {
|
||||
if (!enexto(&bypos, mtmp->mux, mtmp->muy, mtmp->data))
|
||||
break;
|
||||
if ((pm = mkclass(let,0)) != 0 &&
|
||||
|
||||
Reference in New Issue
Block a user