# HG changeset patch # User chewie@33b003aa-7bff-0310-803a-e67f0ece8222 # Date 1223220451 0 # Node ID 816b17db2bec5c2c28d73e26fdd1a6c1192e2c38 # Parent 5e85737281bc083d5871136f5e5c4b137fb96cfd - small fix for editor maploader plugin - it passed a (never used) param to loadMapFile() diff -r 5e85737281bc -r 816b17db2bec clients/editor/plugins/maploader.py --- a/clients/editor/plugins/maploader.py Fri Oct 03 12:14:39 2008 +0000 +++ b/clients/editor/plugins/maploader.py Sun Oct 05 15:27:31 2008 +0000 @@ -22,7 +22,8 @@ def loadFile(self, path, filename): content = path.split('/') - self.newMap = loadMapFile('/'.join([path, filename]), self.engine, '/'.join(content) + '/') + print content + self.newMap = loadMapFile('/'.join([path, filename]), self.engine) class MapSaver(plugin.Plugin): def __init__(self, engine):