summaryrefslogtreecommitdiff
path: root/src/mapdata.py
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2012-09-28 03:10:31 +0200
committerTreeki <treeki@gmail.com>2012-09-28 03:10:31 +0200
commit940fec2a51a7dee50c4f6ae898dca8881108617b (patch)
tree4e8639c1b194c2e0fc75e8a158577159af75ac6d /src/mapdata.py
parent166fc64dbea79897cc702770ca33a8e1c57a124f (diff)
downloadkoopatlas-940fec2a51a7dee50c4f6ae898dca8881108617b.tar.gz
koopatlas-940fec2a51a7dee50c4f6ae898dca8881108617b.zip
world def format updated
Diffstat (limited to '')
-rw-r--r--src/mapdata.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mapdata.py b/src/mapdata.py
index 5bfe9d5..e2a8a0d 100644
--- a/src/mapdata.py
+++ b/src/mapdata.py
@@ -549,11 +549,12 @@ class KPPathLayer(KPLayer):
@mapfile.dumpable('world_definition')
class KPWorldDef(object):
- __dump_attribs__ = ('uniqueKey', 'name', 'fsHintColours', 'fsTextColours', 'hudHintTransform', 'hudTextColours', 'musicTrackID')
+ __dump_attribs__ = ('uniqueKey', 'name', 'worldID', 'fsHintColours', 'fsTextColours', 'hudHintTransform', 'hudTextColours', 'musicTrackID')
def __init__(self):
self.uniqueKey = -1
self.name = 'Untitled World'
+ self.worldID = '0'
self.fsHintColours = ((0,0,0,255),(0,0,0,255))
self.fsTextColours = ((255,255,255,255),(255,255,255,255))