Comment typofixes, pt 4

This commit is contained in:
Pasi Kallinen
2015-10-17 18:47:31 +03:00
parent 66dd87454b
commit af1c77808b
45 changed files with 73 additions and 73 deletions

View File

@@ -233,7 +233,7 @@ losedogs()
* Last, place migrating monsters coming to this level.
*
* Hero might eventually be displaced (due to the third step, but
* occuring later), which is the main reason to do the second step
* occurring later), which is the main reason to do the second step
* sooner (in turn necessitating the first step, rather than combining
* the list scans with monster placement).
*/
@@ -793,7 +793,7 @@ register struct obj *obj;
|| (acidic(fptr) && !resists_acid(mon))
|| (poisonous(fptr) && !resists_poison(mon)))
return POISON;
/* turning into slime is preferrable to starvation */
/* turning into slime is preferable to starvation */
else if (fptr == &mons[PM_GREEN_SLIME] && !slimeproof(mon->data))
return (starving ? ACCFOOD : POISON);
else if (vegan(fptr))
@@ -987,7 +987,7 @@ boolean was_dead;
}
}
} else {
/* chance it goes wild anyway - Pet Semetary */
/* chance it goes wild anyway - Pet Sematary */
mtmp->mtame = rn2(mtmp->mtame + 1);
if (!mtmp->mtame)
mtmp->mpeaceful = rn2(2);