Fix up some line breaks
[snowed-in.git] / src / snowed-in.inf
index 42b27c3044354302a2214339018af758ff804aff..d8feda3e65c935275f36c70288a00a8b47897ab6 100644 (file)
@@ -573,9 +573,10 @@ Object  southofcabin "South Of Cabin"
             check_for_cabin_lighting();
             ! }
             if (snowshoes has worn && lantern in player && eastofcabin hasnt
-            visited) {
+            visited && lantern_fuel_left > 0) {
                 throw_rock();
             }
+            print "^";
         ],
         n_to frontdoor,
         s_to forest,
@@ -861,16 +862,18 @@ Object  forest "Forest"
             "The snowshoes are doing their job by making sure 
             you don't sink into the snow. ";
     }
-    print "^";
+    !    print "^";
 ];
 
 Object  eastofcabin "East Of Cabin"
   with  description [;
             print "It's dark outside. ";
             check_for_cabin_lighting();
-            if (cabin_has_electricity == 1 && lantern in player) {
+            if (cabin_has_electricity == 1 && lantern in player && lantern_fuel_left
+            > 0) {
                 throw_rock();
             }
+            print "^";
         ],
         w_to window,
         s_to southofcabin,