Disable gfMoreWind for land objects on turn end only after a fixed-time delay
15s sounds much, but it's the average amount for gfMineStrike mines to settle
naturally. And it would be very confusing to see falling mines suddenly not
caring about gfMoreWind for no apparent reason.
Note this whole thing is a giant hack anyway, to prevent a turn being
blocked by infinitely bouncing mines.
The better solution would be to help gfMoreWind-affected land objects settle
naturally more reliably even under extreme wind.
But this commit is "good enough" for now.
If you don't like the delay, you can always tweak the constant.
#ifndef TEAM_H
#define TEAM_H
#include <QObject>
#include <QVector>
struct Hedgehog {
Hedgehog();
QByteArray name;
QByteArray hat;
quint32 hp;
int level;
};
class Team {
public:
explicit Team();
void resize(int number);
QVector<Hedgehog> hedgehogs() const;
QByteArray name;
QByteArray color;
private:
QVector<Hedgehog> m_hedgehogs;
int m_hedgehogsNumber;
};
#endif // TEAM_H