From 9b0bee2dc583ea369039f0869df0527fdc84f59a Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Mon, 7 Mar 2016 00:35:55 +0100
Subject: [PATCH] TCE: Add basic worldconf, default to it.

---
 confserver/TheCrawlingEater | 18 ++++++++++++++++++
 server/utils.py             |  2 +-
 2 files changed, 19 insertions(+), 1 deletion(-)
 create mode 100644 confserver/TheCrawlingEater

diff --git a/confserver/TheCrawlingEater b/confserver/TheCrawlingEater
new file mode 100644
index 0000000..a9b5e95
--- /dev/null
+++ b/confserver/TheCrawlingEater
@@ -0,0 +1,18 @@
+MAP_LENGTH 64
+PLAYER_TYPE 0
+
+TA_ID 1
+TA_NAME wait
+
+TT_ID 0
+TT_START_NUMBER 1
+TT_LIFEPOINTS 30
+TT_SYMBOL @
+TT_NAME HUMAN
+
+TT_ID 5
+TT_SYMBOL %
+TT_NAME SKELETON
+
+TT_ID 0
+TT_CORPSE_ID 5
diff --git a/server/utils.py b/server/utils.py
index c8f1c38..c80c1d0 100644
--- a/server/utils.py
+++ b/server/utils.py
@@ -103,7 +103,7 @@ def parse_command_line_arguments():
     parser.add_argument('-l', nargs="?", const="save", dest='savefile',
                         action="store")
     parser.add_argument('-w', type=str,
-                        default="confserver/PleaseTheIslandGod",
+                        default="confserver/TheCrawlingEater",
                         dest='worldconf', action='store')
     parser.add_argument('-v', dest='verbose', action='store_true')
     opts, unknown = parser.parse_known_args()
-- 
2.30.2