From 03529923e9d83666785c81d89c09fea5d513c306 Mon Sep 17 00:00:00 2001 From: CloudKeeper1 Date: Sat, 10 Sep 2016 20:09:50 +1000 Subject: [PATCH] Typo: Verticle to Vertical --- evennia/contrib/mapbuilder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/contrib/mapbuilder.py b/evennia/contrib/mapbuilder.py index 882a2b730..92b43ab38 100644 --- a/evennia/contrib/mapbuilder.py +++ b/evennia/contrib/mapbuilder.py @@ -216,7 +216,7 @@ def build_forest(x, y, **kwargs): return room -def build_verticle_exit(x, y, **kwargs): +def build_vertical_exit(x, y, **kwargs): """Creates two exits to and from the two rooms north and south.""" # If on the first iteration - Do nothing. if kwargs["iteration"] == 0: @@ -257,7 +257,7 @@ def build_horizontal_exit(x, y, **kwargs): # Include your trigger characters and build functions in a legend dict. EXAMPLE2_LEGEND = {("♣", "♠"): build_forest, - ("|"): build_verticle_exit, + ("|"): build_vertical_exit, ("-"): build_horizontal_exit} # ---------- END OF EXAMPLES ---------- #