summaryrefslogtreecommitdiffstats
path: root/src/crsm.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crsm.hpp')
-rw-r--r--src/crsm.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crsm.hpp b/src/crsm.hpp
index 0a23d7a..3d482a7 100644
--- a/src/crsm.hpp
+++ b/src/crsm.hpp
@@ -47,12 +47,12 @@ using IrcCheckCallback = void (CRSM::*)(const ClientInfo&, int, const ClientInfo
class ScenarioSettings {
public:
QString name;
+ ClientInfo wishClient;
bool league = false;
bool randomLeague = false;
- ClientInfo wishClient;
ScenarioSettings(const QString& name, bool league = false) : name(name), league(league) {}
- ScenarioSettings(const QString& name, const ClientInfo& client, bool league = false) : name(name), league(league), wishClient(client) {}
+ ScenarioSettings(const QString& name, const ClientInfo& client, bool league = false) : name(name), wishClient(client), league(league) {}
ScenarioSettings() {}
inline bool operator ==(const ScenarioSettings& other) const
{