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 117df9d..d8f6d0d 100644
--- a/src/crsm.hpp
+++ b/src/crsm.hpp
@@ -109,10 +109,9 @@ private:
struct CRSMSession {
bool IrcUseIngameChat = false;
bool League = false;
- bool Running = false;
+ enum {None = -1, Lobby = 0, Loading = 1, Running = 2} State = None;
bool UserWish = false;
int CountDown = -1;
- bool Hosting = false;
QString ScenarioName = "";
@@ -182,6 +181,7 @@ private:
void stopAliasWishEditing();
QString ircActivateIngameChat(bool activated = true);
QStringList listC4Folder(const QString &path);
+ void ircSetIngameChannelTopic();
void addCommand(const QString& name, CmdFunction func, int interfaces = Clonk | IRC, UserType userType = User, const QString& shortDescription = "", const QString &argList = "", const QString &longDescription = "");
bool cmdExists(const QString& name, ClientInterface interface);