Fix host not re-sending ammo scheme after editing an existing ammo scheme
This caused clients to start with an incompatible ammo loadout.
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}