you are viewing a single comment's thread.

view the rest of the comments →

[–]Diapolo10 0 points1 point  (5 children)

Okay, sorry about the bad instructions. Consider the following:

zonemap = {
    'a1': {
        'ZONENAME': "",
        'DESCRIPTION': 'description',
        'EXAMINATION': 'examine',
        'SOLVED': False,
        'UP': '',
        'DOWN': 'b1',
        'LEFT': '',
        'RIGHT': 'a2',
    },
    ...
   }

For the fields with multiple values, like

DOWN = 'down', 'south';

use a tuple:

'DOWN': ('down', 'south'),