git @ Cat's Eye Technologies Super-Wumpus-Land / 64b6717
Make it more obvious when viewing a room from the subway train. catseye 10 years ago
2 changed file(s) with 11 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
277277 this.tty.reset();
278278
279279 this.visited[this.roomNo] = 1;
280 print(desc + "\n");
280 print(desc);
281 if (this.subway > 0) {
282 print(" (aboard subway train)");
283 }
284 print("\n");
285
281286 print(rep('-', desc.length));
282287 print("\n\n");
283288
173173
174174 $visited[$room] = 1;
175175
176 print $desc . "\n";
176 print $desc;
177 if ($subway) {
178 print " (aboard subway train)";
179 }
180 print "\n";
177181 print "-" x length($desc) . "\n\n";
178182
179183 if ($room[$room]->[4] == 1)