Fix resurrector handling turn time manually, use correct ammoprop instead
This also fixes this bug: The clock turned gray while using resurrector, although the time actually counts down.
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}