grammar: "foo based" to "foo-based"

There seems to be a need to locate these in the distribution every decade or so.
This commit is contained in:
nhmall
2022-10-30 16:08:14 -04:00
parent 333735863f
commit ad23b4e8e1
11 changed files with 12 additions and 12 deletions

View File

@@ -1016,7 +1016,7 @@ dogfood(struct monst *mon, struct obj *obj)
return ACCFOOD;
if (metallivorous(mptr) && is_metallic(obj)
&& (is_rustprone(obj) || mptr != &mons[PM_RUST_MONSTER])) {
/* Non-rustproofed ferrous based metals are preferred. */
/* Non-rustproofed ferrous-based metals are preferred. */
return (is_rustprone(obj) && !obj->oerodeproof) ? DOGFOOD
: ACCFOOD;
}