From: terencehill Date: Tue, 27 Oct 2015 12:37:57 +0000 (+0100) Subject: Hide the MOTD when going spec X-Git-Tag: xonotic-v0.8.2~1750^2 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=c53eefe3c0c96fb03d404a32ae9f952e2308ec05;hp=cc31e2e33d3bf3e55f30d9bbbfc83ea188c6ad01 Hide the MOTD when going spec --- diff --git a/qcsrc/server/cl_client.qc b/qcsrc/server/cl_client.qc index d6522285ba..8bb7861f22 100644 --- a/qcsrc/server/cl_client.qc +++ b/qcsrc/server/cl_client.qc @@ -1982,7 +1982,7 @@ void PrintWelcomeMessage() { if(self.BUTTON_INFO) // BUTTON_INFO hides initial MOTD self.motd_actived_time = -2; // wait until BUTTON_INFO gets released - else if(self.motd_actived_time == -2 || IS_PLAYER(self)) + else if(self.motd_actived_time == -2 || IS_PLAYER(self) || IS_SPEC(self)) { // instanctly hide MOTD self.motd_actived_time = 0;