trinity icon indicating copy to clipboard operation
trinity copied to clipboard

Unused case in I-RCOUNT

Open eriktorbjorn opened this issue 5 years ago • 1 comments
trafficstars

When you arrive at the tundra, the time is set to 2:41 pm. (See IN-GARDEN-IN.) But I-RCOUNT, the timer that handles the countdown, has a case for when the minutes are 40:

	       (<ZERO? ,SECONDS>
		<COND (<T? .CR>
		       <CRLF>)>
		<COND (<EQUAL? ,MINUTES 40>
		       <SET X T>
		       <TELL "A hidden " D ,RSPEAKER>
		       <SAY-BARKS>
		       <TELL " something incomprehensible. It sounded like ">)
		      (<PROB 50>
		       <SET X T>
		       <RSPEAKER-BARKS>)>
		<TELL "\"" <GET ,RMINUTES <- ,MINUTES 41>> " minut">
		<COND (<ZERO? .X>
		       <BARKS-RSPEAKER>
		       <RTRUE>)>
		<TELL ".\"" CR>
		<RTRUE>)

I guess it would be enough to change the <EQUAL? ,MINUTES 40> to <EQUAL? ,MINUTES 41> if we wanted to enable that?

eriktorbjorn avatar Sep 03 '20 06:09 eriktorbjorn

I just tried it. Without the change:

Platform

This narrow platform is attached to the north side of a huge steel enclosure,
fifty feet high. All around you, a frozen wasteland stretches off to a horizon
lined with gray mountains.

An open white door leads into the enclosure's interior. The topmost rungs of a
ladder stand beside it.

A loudspeaker barks, "Dyevianatsat minut."

With the change:

Platform

This narrow platform is attached to the north side of a huge steel enclosure,
fifty feet high. All around you, a frozen wasteland stretches off to a horizon
lined with gray mountains.

An open white door leads into the enclosure's interior. The topmost rungs of a
ladder stand beside it.

A hidden loudspeaker barks something incomprehensible. It sounded like
"Dyevianatsat minut."

eriktorbjorn avatar Sep 03 '20 06:09 eriktorbjorn