Remove obsolete comment part.
[open-adventure.git] / init.c
diff --git a/init.c b/init.c
index e413fff4dabc623ea1f22842e48b70cb8a8679e1..58bb0e88bdd7662176a49d8e9016e809a894cf9e 100644 (file)
--- a/init.c
+++ b/init.c
@@ -76,13 +76,18 @@ int initialise(void) {
        /*  Treasure props are initially STATE_NOTFOUND, and are set to
         *  STATE_FOUND the first time they are described.  game.tally
         *  keeps track of how many are not yet found, so we know when to
-        *  close the cave. */
-       for (int treasure = 1; treasure <= NOBJECTS; treasure++) {
-               if (objects[treasure].is_treasure) {
+        *  close the cave.
+        *  (ESR) Non-trreasures are set to STATE_FOUND explicity so we
+        *  don't rely on the value of uninitialized storage. This is to
+        *  make translation to future languages easier. */
+       for (int object = 1; object <= NOBJECTS; object++) {
+               if (objects[object].is_treasure) {
                        ++game.tally;
-                       if (objects[treasure].inventory != 0) {
-                               PROP_SET_NOT_FOUND(treasure);
+                       if (objects[object].inventory != NULL) {
+                               OBJECT_SET_NOT_FOUND(object);
                        }
+               } else {
+                       OBJECT_SET_FOUND(object);
                }
        }
        game.conds = setbit(COND_HBASE);