X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=make_dungeon.py;h=b3e08fde39ac7fc2f6aa63205c987f759647ee2e;hp=454a27a3c4ae81c69a226c11f3aaf7d37f155225;hb=88c734ceea3f25a2926ae00af4ca790deedcdcd2;hpb=5cdaa301dcf6ececc1d2a9e340d8da698a9f55d8 diff --git a/make_dungeon.py b/make_dungeon.py index 454a27a..b3e08fd 100755 --- a/make_dungeon.py +++ b/make_dungeon.py @@ -203,7 +203,7 @@ def get_obituaries(obit): obit_str = obit_str[:-1] # trim trailing newline return obit_str -def get_hints(hnt, arb): +def get_hints(hnt): template = """ {{ .number = {}, .penalty = {}, @@ -213,7 +213,6 @@ def get_hints(hnt, arb): }}, """ hnt_str = "" - md = dict(arb) for member in hnt: item = member["hint"] number = item["number"] @@ -550,7 +549,7 @@ if __name__ == "__main__": locations = get_locations(db["locations"]), objects = get_objects(db["objects"]), obituaries = get_obituaries(db["obituaries"]), - hints = get_hints(db["hints"], db["arbitrary_messages"]), + hints = get_hints(db["hints"]), conditions = get_condbits(db["locations"]), motions = get_motions(db["motions"]), actions = get_actions(db["actions"]),