Fix up some line breaks
[snowed-in.git] / src / snowed-in.inf
index e37515b5ae323bc3ce83111d8dc6c2c97a49e7ce..d8feda3e65c935275f36c70288a00a8b47897ab6 100644 (file)
@@ -202,7 +202,7 @@ Object  lightsocket "light socket" mainroom
                     with a warning label because you contain more than 
                     a trace amount of nut.";
             }
-            if (noun == lightbulb && light has on) {
+            if (noun == lightbulb && lightbulb has on) {
                 give mainroom light;
                 give office light;
                 give kitchenette light;
@@ -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,