home · contact · privacy
Server: Add terrain description to things_here command.
[plomrogue] / server / config / world_data.py
index 97725a3a1fe2f157d9543d33682b0f0cef4041b0..ec1e9b15c7d52a24c88b1c99e2a59dec32296a9e 100644 (file)
@@ -13,7 +13,13 @@ world_db = {
     "PLUGIN": [],
     "ThingActions": {},
     "ThingTypes": {},
-    "Things": {}
+    "Things": {},
+    "terrain_names": {
+        " ": "UNKNOWN",
+        "X": "TREE",
+        "~": "SEA",
+        ".": "EARTH"
+    }
 }
 
 """Mapping of direction names to internal direction chars."""