Fix
issue #791:
- Send drawn map data on room creation
- Don't use MAP parameter to deduce mapgen when it is one of "+rnd+", "+drawn+", "+maze+"
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}