Fix a formal-type glitch.
[open-adventure.git] / misc.c
diff --git a/misc.c b/misc.c
index 0bcfb26387b7edb2487d636c2991ca40c6fabc93..691d771eec7ab79d1d0a399c529a5af02f1a8d36 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -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)