summaryrefslogtreecommitdiffstats
path: root/crsm.hpp
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2015-04-01 15:36:59 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2015-04-01 15:36:59 +0200
commit734ac10797f8a1464d5e12b9fd4cfcc2d2e5e4e3 (patch)
tree5ddd5e53d81c3f8004902f05786c7f8d00c97c72 /crsm.hpp
parent64bfe2fa7bd43de041d69b5fa1687d0a04004866 (diff)
downloadmanager-734ac10797f8a1464d5e12b9fd4cfcc2d2e5e4e3.tar.gz
manager-734ac10797f8a1464d5e12b9fd4cfcc2d2e5e4e3.zip
Added option to randomly enable league for scenarios.lst (--random-
league).
Diffstat (limited to 'crsm.hpp')
-rw-r--r--crsm.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/crsm.hpp b/crsm.hpp
index 9eeaf5b..5e8b570 100644
--- a/crsm.hpp
+++ b/crsm.hpp
@@ -42,6 +42,7 @@ class ScenarioSettings {
public:
QString name;
bool league = false;
+ bool randomLeague = false;
ClientInfo wishClient;
ScenarioSettings(const QString& name, bool league = false) : name(name), league(league) {}