Fix a formal-type glitch.

This commit is contained in:
Eric S. Raymond 2023-03-11 09:41:07 -05:00
parent 71f05c4567
commit b7bf85904d
2 changed files with 2 additions and 2 deletions

2
misc.c
View file

@ -602,7 +602,7 @@ loc_t put(obj_t object, loc_t where, int pval)
* negated game.prop values for the repository objects. */
{
move(object, where);
return (-1) - pval;;
return (-1) - pval;; // Needs to stay sinchronized with STASHED
}
void carry(obj_t object, loc_t where)