From: Christian Heller <c.heller@plomlompom.de>
Date: Fri, 26 Feb 2016 20:13:55 +0000 (+0100)
Subject: Plugin: Fix bad function reference.
X-Git-Tag: tce~137
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/%7B%7Bprefix%7D%7D/%7B%7B%20web_path%20%7D%7D/unset_cookie?a=commitdiff_plain;h=d9780e39a50655f03f5dfaf4a157f8be5ac6347c;p=plomrogue

Plugin: Fix bad function reference.
---

diff --git a/plugins/server/PleaseTheIslandGod.py b/plugins/server/PleaseTheIslandGod.py
index 5c89394..8a3242b 100644
--- a/plugins/server/PleaseTheIslandGod.py
+++ b/plugins/server/PleaseTheIslandGod.py
@@ -65,7 +65,7 @@ def make_world(seed):
             print("Ignoring: No valid " + name + " set.")
             return
     world_db["Things"] = {}
-    make_map()
+    make_map_func()
     world_db["WORLD_ACTIVE"] = 1
     world_db["TURN"] = 1
     for i in range(world_db["ThingTypes"][playertype]["TT_START_NUMBER"]):