]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
fteqcc parsing bug
authorRudolf Polzer <divverent@alientrap.org>
Sat, 1 Oct 2011 14:53:46 +0000 (16:53 +0200)
committerRudolf Polzer <divverent@alientrap.org>
Sat, 1 Oct 2011 14:53:46 +0000 (16:53 +0200)
qcsrc/server/g_world.qc

index 09daa245ac8c368016acb84ede41df05764c8f86..93157819efe8f6685c7594ba38e0f35942d0fe2a 100644 (file)
@@ -1356,7 +1356,7 @@ void IntermissionThink()
                return;
 
        if(!mapvote_initialized)
-               if (time < intermission_exittime + 10 && !self.BUTTON_ATCK && !self.BUTTON_JUMP && !self.BUTTON_ATCK2 && !self.BUTTON_HOOK && !self.BUTTON_USE)
+               if (time < intermission_exittime + 10 && !(self.BUTTON_ATCK || self.BUTTON_JUMP || self.BUTTON_ATCK2 || self.BUTTON_HOOK || self.BUTTON_USE))
                        return;
 
        MapVote_Start();