From: MirceaKitsune Date: Tue, 7 Sep 2010 18:31:23 +0000 (+0300) Subject: Fix some comments for that last change X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=278c0dd853a7b20389c2a693a5b878e1a50e2988;p=voretournament%2Fvoretournament.git Fix some comments for that last change --- diff --git a/data/qcsrc/client/sbar.qc b/data/qcsrc/client/sbar.qc index fe6e09ec..fd08b48b 100644 --- a/data/qcsrc/client/sbar.qc +++ b/data/qcsrc/client/sbar.qc @@ -3076,7 +3076,7 @@ void Sbar_Draw (void) else if(gametype == GAME_CTS || gametype == GAME_RACE) CSQC_race_hud(); - // draw canleave message + // draw the canleave message if(getstati(STAT_VORE_CANLEAVE)) { s = strcat("^7Press ^3", getcommandkey("secondary fire", "+attack2"), " ^7to exit"); diff --git a/data/qcsrc/server/cl_client.qc b/data/qcsrc/server/cl_client.qc index 52a9a412..72002477 100644 --- a/data/qcsrc/server/cl_client.qc +++ b/data/qcsrc/server/cl_client.qc @@ -2016,7 +2016,7 @@ void SpectateCopy(entity spectatee) { self.stat_eaten = spectatee.stat_eaten; self.stat_stomachload = spectatee.stat_stomachload; self.stat_digesting = spectatee.stat_digesting; - // self.stat_canleave = spectatee.stat_canleave; // don't enable this one, since the notification it's used for does not address spectated players + //self.stat_canleave = spectatee.stat_canleave; // don't enable this one, since the notification it's used for does not address spectated players setorigin(self, spectatee.origin); setsize(self, spectatee.mins, spectatee.maxs); SetZoomState(spectatee.zoomstate);