Forged Alliance Forever Forged Alliance Forever Forums 2013-03-29T17:40:17+02:00 /feed.php?f=26&t=3466 2013-03-29T17:40:17+02:00 2013-03-29T17:40:17+02:00 /viewtopic.php?t=3466&p=36136#p36136 <![CDATA[Re: Fix the Map Vault]]> https://bitbucket.org/thepilot/modular- ... 264992c7d6

Will be in the next deployment of the lobby.

Statistics: Posted by Ze_PilOt — 29 Mar 2013, 17:40


]]>
2013-03-29T17:40:16+02:00 2013-03-29T17:40:16+02:00 /viewtopic.php?t=3466&p=36135#p36135 <![CDATA[Re: Fix the Map Vault]]> https://bitbucket.org/thepilot/modular- ... 264992c7d6

Will be in the next deployment of the lobby.

Statistics: Posted by Ze_PilOt — 29 Mar 2013, 17:40


]]>
2013-03-29T17:20:31+02:00 2013-03-29T17:20:31+02:00 /viewtopic.php?t=3466&p=36131#p36131 <![CDATA[Re: Fix the Map Vault]]> Statistics: Posted by Xinnony — 29 Mar 2013, 17:20


]]>
2013-03-29T16:48:38+02:00 2013-03-29T16:48:38+02:00 /viewtopic.php?t=3466&p=36128#p36128 <![CDATA[Fix the Map Vault]]>
From: https://bitbucket.org/thepilot/modular- ... ult#cl-577

Code:
    #making sure we pack only necessary files and not random garbage
    for filename in os.listdir(mapDir):
        if filename.endswith(".lua") or filename.endswith("preview.jpg") or filename.endswith(".scmap"):
            files.append(os.path.join(mapDir, filename))


Change to:
Code:
    #making sure we pack only necessary files and not random garbage
    for filename in os.listdir(mapDir):
        if filename.endswith(".lua") or filename.endswith("preview.jpg") or filename.endswith(".scmap") or filename.endswith(".dds"):
            files.append(os.path.join(mapDir, filename))

Statistics: Posted by Combo — 29 Mar 2013, 16:48


]]>