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
+6
-1
impl/swl.js/src/swl.js
less
more
277
277
this.tty.reset();
278
278
279
279
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
281
286
print(rep('-', desc.length));
282
287
print("\n\n");
283
288
+5
-1
script/swl.pl
less
more
173
173
174
174
$visited[$room] = 1;
175
175
176
print $desc . "\n";
176
print $desc;
177
if ($subway) {
178
print " (aboard subway train)";
179
}
180
print "\n";
177
181
print "-" x length($desc) . "\n\n";
178
182
179
183
if ($room[$room]->[4] == 1)