rabdill / bishops_map_legacy

A data-driven text adventure engine written in Python. (No longer active; being ported to Javascript.)
0 stars 0 forks source link

Menu options aren't printed in order #2

Closed rabdill closed 10 years ago

rabdill commented 10 years ago

Sometimes option "3" pops up before "2," etc. Dictionaries aren't designed to preserve order, but these are: https://docs.python.org/2/library/collections.html#collections.OrderedDict

The order of the "responses" dictionary doesn't matter because we're looking it up anyway.

rabdill commented 10 years ago

Moved them out of dictionaries, into lists.